private void ReportError(object sender, ErrorEventArgs e)
 {
     if (OnError != null) {
         OnError(this, e);
     }
 }
Exemplo n.º 2
0
 internal FileErrorEventArgs(ErrorEventArgs e, LineMap lineMap)
     : this(e.Error, lineMap.Map(e.Position), e.Args)
 {
 }
Exemplo n.º 3
0
 private void ReportError(object sender, ErrorEventArgs e) {
     if (OnError != null) {
         OnError(this, new FileErrorEventArgs(e, _lineMap));
     }
 }