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