Exemple #1
0
 public void SetLocation(CodeLocation location)
 {
     _current = location;
 }
 public SyntaxErrorException(CodeLocation location, string message)
     : base(ErrorCode.SyntaxError, message)
 {
     Location = location;
 }