コード例 #1
0
 public MySQLLexer(ICharStream input, TextWriter output, TextWriter errorOutput, IMySQLRecognizerCommon mySQLRecognizerCommon)
     : this(input, output, errorOutput)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
コード例 #2
0
 public MySQLParser(ITokenStream input, TextWriter output, TextWriter errorOutput, IMySQLRecognizerCommon mySQLRecognizerCommon)
     : this(input, output, errorOutput)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
コード例 #3
0
 public MySQLLexer(ICharStream input, IMySQLRecognizerCommon mySQLRecognizerCommon) : this(input)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }
コード例 #4
0
 public MySQLParser(ITokenStream input, IMySQLRecognizerCommon mySQLRecognizerCommon) : this(input)
 {
     this.mySQLRecognizerCommon = mySQLRecognizerCommon;
 }