(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 3949 | } |
| 3950 | |
| 3951 | func NewApplContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *ApplContext { |
| 3952 | var p = new(ApplContext) |
| 3953 | |
| 3954 | InitEmptyTermContext(&p.TermContext) |
| 3955 | p.parser = parser |
| 3956 | p.CopyAll(ctx.(*TermContext)) |
| 3957 | |
| 3958 | return p |
| 3959 | } |
| 3960 | |
| 3961 | func (s *ApplContext) GetRuleContext() antlr.RuleContext { |
| 3962 | return s |
no test coverage detected