From 2fcb4625389b1594bbefdbaf2e038b2cfffa8ead Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Tue, 30 May 2023 14:27:59 +0800 Subject: + json extends --- .../Assets/ThirdParty/LitJson/ParserToken.cs | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 WorldlineKeepers/Assets/ThirdParty/LitJson/ParserToken.cs (limited to 'WorldlineKeepers/Assets/ThirdParty/LitJson/ParserToken.cs') diff --git a/WorldlineKeepers/Assets/ThirdParty/LitJson/ParserToken.cs b/WorldlineKeepers/Assets/ThirdParty/LitJson/ParserToken.cs new file mode 100644 index 0000000..01174df --- /dev/null +++ b/WorldlineKeepers/Assets/ThirdParty/LitJson/ParserToken.cs @@ -0,0 +1,44 @@ +#region Header +/** + * ParserToken.cs + * Internal representation of the tokens used by the lexer and the parser. + * + * The authors disclaim copyright to this source code. For more details, see + * the COPYING file included with this distribution. + **/ +#endregion + + +namespace LitJson +{ + internal enum ParserToken + { + // Lexer tokens + None = System.Char.MaxValue + 1, + Number, + True, + False, + Null, + CharSeq, + // Single char + Char, + + // Parser Rules + Text, + Object, + ObjectPrime, + Pair, + PairRest, + Array, + ArrayPrime, + Value, + ValueRest, + String, + + // End of input + End, + + // The empty rule + Epsilon + } +} -- cgit v1.1-26-g67d0