consumer.cpp 410 B

123456789101112131415
  1. #include "consumer.h"
  2. #include "string.h"
  3. #include "parser.h"
  4. namespace NYson {
  5. ////////////////////////////////////////////////////////////////////////////////
  6. void TYsonConsumerBase::OnRaw(TStringBuf str, NYT::NYson::EYsonType type) {
  7. ParseYsonStringBuffer(str, this, type);
  8. }
  9. ////////////////////////////////////////////////////////////////////////////////
  10. } // namespace NYson