jtr/Jtr.Parsing/ISourceLocation.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

8 lines
159 B
C#

namespace Jtr.Parsing;
public interface ISourceLocation
{
public string File { get; }
public int Line { get; }
public int Column { get; }
}