Esempio n. 1
0
 public OCLSyntaxParser(ITokenStream input, ErrorCollection errColl)
     : this(input) {
     Errors = errColl;
 }
Esempio n. 2
0
 public ParserErrors(ErrorCollection destination)
 {
     Error = destination;
 }
Esempio n. 3
0
 public OCLSyntaxLexer(ICharStream input, ErrorCollection errorColl) : this(input) {
     Errors = errorColl;
 }
Esempio n. 4
0
 public ErrorCollection(ErrorCollection errorRoot)
 {
     Errors = errorRoot.Errors;
 }