(input antlr.TokenStream)
| 461 | } |
| 462 | |
| 463 | func NewSqlBaseParser(input antlr.TokenStream) *SqlBaseParser { |
| 464 | this := new(SqlBaseParser) |
| 465 | |
| 466 | this.BaseParser = antlr.NewBaseParser(input) |
| 467 | |
| 468 | this.Interpreter = antlr.NewParserATNSimulator(this, deserializedATN, decisionToDFA, antlr.NewPredictionContextCache()) |
| 469 | this.RuleNames = ruleNames |
| 470 | this.LiteralNames = literalNames |
| 471 | this.SymbolicNames = symbolicNames |
| 472 | this.GrammarFileName = "SqlBase.g4" |
| 473 | |
| 474 | return this |
| 475 | } |
| 476 | |
| 477 | // SqlBaseParser tokens. |
| 478 | const ( |