blob: 40ae452978c8dab94ede8ba1bb4c736e3f69a53e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "consumer.h"
#include "string.h"
#include "parser.h"
namespace NYson {
////////////////////////////////////////////////////////////////////////////////
void TYsonConsumerBase::OnRaw(TStringBuf str, NYT::NYson::EYsonType type) {
ParseYsonStringBuffer(str, this, type);
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYson
|