(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 1723 | } |
| 1724 | |
| 1725 | func NewSubqueryContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *SubqueryContext { |
| 1726 | var p = new(SubqueryContext) |
| 1727 | |
| 1728 | p.QueryPrimaryContext = NewEmptyQueryPrimaryContext() |
| 1729 | p.parser = parser |
| 1730 | p.CopyFrom(ctx.(*QueryPrimaryContext)) |
| 1731 | |
| 1732 | return p |
| 1733 | } |
| 1734 | |
| 1735 | func (s *SubqueryContext) GetRuleContext() antlr.RuleContext { |
| 1736 | return s |
no test coverage detected