All checks were successful
Run the JSON parser tests / test (push) Has been skipped
14 lines
279 B
C#
14 lines
279 B
C#
using Jtr.Parsing.Json.Syntax;
|
|
|
|
namespace Jtr.Tools;
|
|
|
|
public static partial class JsonPath
|
|
{
|
|
public static partial class Interpreter
|
|
{
|
|
public class Context
|
|
{
|
|
public IJsonSyntax Target { get; set; } = default!;
|
|
}
|
|
}
|
|
} |