public SyntaxException(ErrorSink errLog)
     : base("Syntax Error")
 {
     ErrorLog = errLog;
 }
Example #2
0
 public SemanticAnalyser(ErrorSink errorLog)
 {
     this.errorLog = errorLog;
 }
Example #3
0
 public Tokenizer(ErrorSink errorLog, SourceReader sourceReader)
 {
     this.errorLog = errorLog;
     this.source   = sourceReader;
 }