All checks were successful
Run the JSON parser tests / test (push) Has been skipped
21 lines
281 B
C#
21 lines
281 B
C#
namespace Jtr.Tools;
|
|
|
|
public enum JsonPathToken
|
|
{
|
|
DollarSign,
|
|
Asterisk,
|
|
Dot,
|
|
DotDot,
|
|
LeftBracket,
|
|
RightBracket,
|
|
Identifier,
|
|
String,
|
|
Minus,
|
|
Number,
|
|
Comma,
|
|
Colon,
|
|
Null,
|
|
True,
|
|
False,
|
|
EndOfSource,
|
|
} |