Пример #1
0
 public ParsingMessage(string text, ParsingMessageKind kind, SourceLocation location)
 {
     this.Text = text;
     this.Kind = kind;
     this.Location = location;
 }
Пример #2
0
 public SourceSpan(SourceLocation start, SourceLocation end)
     : this()
 {
     this.Start = start;
     this.End = end;
 }