(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 3115 | } |
| 3116 | |
| 3117 | func NewNestedContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *NestedContext { |
| 3118 | var p = new(NestedContext) |
| 3119 | |
| 3120 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 3121 | p.parser = parser |
| 3122 | p.CopyAll(ctx.(*PrimaryContext)) |
| 3123 | |
| 3124 | return p |
| 3125 | } |
| 3126 | |
| 3127 | func (s *NestedContext) GetE() IExprContext { return s.e } |
| 3128 |
no test coverage detected