jtr/Jtr.Parsing.Json/JsonParser.Context.cs
mdnapo 96c203f842
All checks were successful
Run the JSON parser tests / test (push) Has been skipped
Moved UI to separate project, added Dockerfile & renamed project
2024-10-19 12:04:40 +02:00

11 lines
266 B
C#

namespace Jtr.Parsing.Json;
public static partial class JsonParser
{
private class Context : ParserContext<JsonToken>
{
public Context(Memory<Lexer<JsonToken>.Token> tokens) : base(tokens, JsonToken.EndOfSource)
{
}
}
}