public SourceLocation(FastMView view, int _line, int _column) { this.view = view; pos = view.Position; line = _line; column = _column; }
public SourceLocation(FastMView view, long offset, int _line, int _column) { this.view = view; pos = offset; line = _line; column = _column; }