(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 7073 | } |
| 7074 | |
| 7075 | func NewNestedContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *NestedContext { |
| 7076 | var p = new(NestedContext) |
| 7077 | |
| 7078 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 7079 | p.parser = parser |
| 7080 | p.CopyAll(ctx.(*PrimaryContext)) |
| 7081 | |
| 7082 | return p |
| 7083 | } |
| 7084 | |
| 7085 | func (s *NestedContext) GetE() IExprContext { return s.e } |
| 7086 |
no test coverage detected