(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 7264 | } |
| 7265 | |
| 7266 | func NewGlobalCallContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *GlobalCallContext { |
| 7267 | var p = new(GlobalCallContext) |
| 7268 | |
| 7269 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 7270 | p.parser = parser |
| 7271 | p.CopyAll(ctx.(*PrimaryContext)) |
| 7272 | |
| 7273 | return p |
| 7274 | } |
| 7275 | |
| 7276 | func (s *GlobalCallContext) GetLeadingDot() antlr.Token { return s.leadingDot } |
| 7277 |
no test coverage detected