diff options
author | chai <215380520@qq.com> | 2023-05-30 14:27:59 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2023-05-30 14:27:59 +0800 |
commit | 2fcb4625389b1594bbefdbaf2e038b2cfffa8ead (patch) | |
tree | 87f57dbfdaf3d11ebf33869b76f12cc475c9a033 /WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs | |
parent | 38e177b0fdf130d6a361ab51c80b5b56ee83f28e (diff) |
+ json extends
Diffstat (limited to 'WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs')
-rw-r--r-- | WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs b/WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs deleted file mode 100644 index e23d477..0000000 --- a/WorldlineKeepers/Assets/Standard Assets/LitJson/ParserToken.cs +++ /dev/null @@ -1,44 +0,0 @@ -#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 (see section A.1.1. of the manual) - None = System.Char.MaxValue + 1, - Number, - True, - False, - Null, - CharSeq, - // Single char - Char, - - // Parser Rules (see section A.2.1 of the manual) - Text, - Object, - ObjectPrime, - Pair, - PairRest, - Array, - ArrayPrime, - Value, - ValueRest, - String, - - // End of input - End, - - // The empty rule - Epsilon - } -} |