(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 3306 | } |
| 3307 | |
| 3308 | func NewGlobalCallContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *GlobalCallContext { |
| 3309 | var p = new(GlobalCallContext) |
| 3310 | |
| 3311 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 3312 | p.parser = parser |
| 3313 | p.CopyAll(ctx.(*PrimaryContext)) |
| 3314 | |
| 3315 | return p |
| 3316 | } |
| 3317 | |
| 3318 | func (s *GlobalCallContext) GetLeadingDot() antlr.Token { return s.leadingDot } |
| 3319 |
no test coverage detected