format.h 765 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "token.h"
  3. namespace NYson {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. const ETokenType BeginListToken = LeftBracket;
  6. const ETokenType EndListToken = RightBracket;
  7. const ETokenType BeginMapToken = LeftBrace;
  8. const ETokenType EndMapToken = RightBrace;
  9. const ETokenType BeginAttributesToken = LeftAngle;
  10. const ETokenType EndAttributesToken = RightAngle;
  11. const ETokenType ListItemSeparatorToken = Semicolon;
  12. const ETokenType KeyedItemSeparatorToken = Semicolon;
  13. const ETokenType KeyValueSeparatorToken = Equals;
  14. const ETokenType EntityToken = Hash;
  15. ////////////////////////////////////////////////////////////////////////////////
  16. } // namespace NYson