All checks were successful
Run the JSON parser tests / test (push) Has been skipped
8 lines
159 B
C#
8 lines
159 B
C#
namespace Jtr.Parsing;
|
|
|
|
public interface ISourceLocation
|
|
{
|
|
public string File { get; }
|
|
public int Line { get; }
|
|
public int Column { get; }
|
|
} |