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