All checks were successful
Run the JSON parser tests / test (push) Has been skipped
16 lines
371 B
C#
16 lines
371 B
C#
using Jtr.Parsing;
|
|
|
|
namespace Jtr.Tools;
|
|
|
|
public static partial class JsonPath
|
|
{
|
|
public static partial class Parser
|
|
{
|
|
public class Context : ParserContext<JsonPathToken>
|
|
{
|
|
public Context(Memory<Lexer<JsonPathToken>.Token> tokens) : base(tokens, JsonPathToken.EndOfSource)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
} |