All checks were successful
Run the JSON parser tests / test (push) Has been skipped
13 lines
377 B
C#
13 lines
377 B
C#
namespace Jtr.Parsing.Json.Syntax;
|
|
|
|
public readonly partial struct JsonObjectSyntax : IJsonSyntax
|
|
{
|
|
public Lexer<JsonToken>.Token Token { get; }
|
|
public JsonPropertySyntax[] Properties { get; }
|
|
|
|
public JsonObjectSyntax(Lexer<JsonToken>.Token token, JsonPropertySyntax[] properties)
|
|
{
|
|
Token = token;
|
|
Properties = properties;
|
|
}
|
|
} |