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