(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 1799 | } |
| 1800 | |
| 1801 | func NewTableContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *TableContext { |
| 1802 | var p = new(TableContext) |
| 1803 | |
| 1804 | p.QueryPrimaryContext = NewEmptyQueryPrimaryContext() |
| 1805 | p.parser = parser |
| 1806 | p.CopyFrom(ctx.(*QueryPrimaryContext)) |
| 1807 | |
| 1808 | return p |
| 1809 | } |
| 1810 | |
| 1811 | func (s *TableContext) GetRuleContext() antlr.RuleContext { |
| 1812 | return s |
no test coverage detected