Ejemplo n.º 1
0
 public MySQLLexer(ICharStream input, TextWriter output, TextWriter errorOutput, IMySQLRecognizerCommon mySQLRecognizerCommon)
     : this(input, output, errorOutput)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
 public MySQLParser(ITokenStream input, TextWriter output, TextWriter errorOutput, IMySQLRecognizerCommon mySQLRecognizerCommon)
     : this(input, output, errorOutput)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
Ejemplo n.º 3
0
 public MySQLLexer(ICharStream input, IMySQLRecognizerCommon mySQLRecognizerCommon) : this(input)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
 public MySQLParser(ITokenStream input, IMySQLRecognizerCommon mySQLRecognizerCommon) : this(input)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }