(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 2924 | } |
| 2925 | |
| 2926 | func NewIdentContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *IdentContext { |
| 2927 | var p = new(IdentContext) |
| 2928 | |
| 2929 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 2930 | p.parser = parser |
| 2931 | p.CopyAll(ctx.(*PrimaryContext)) |
| 2932 | |
| 2933 | return p |
| 2934 | } |
| 2935 | |
| 2936 | func (s *IdentContext) GetLeadingDot() antlr.Token { return s.leadingDot } |
| 2937 |
no test coverage detected