(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 6882 | } |
| 6883 | |
| 6884 | func NewIdentContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *IdentContext { |
| 6885 | var p = new(IdentContext) |
| 6886 | |
| 6887 | InitEmptyPrimaryContext(&p.PrimaryContext) |
| 6888 | p.parser = parser |
| 6889 | p.CopyAll(ctx.(*PrimaryContext)) |
| 6890 | |
| 6891 | return p |
| 6892 | } |
| 6893 | |
| 6894 | func (s *IdentContext) GetLeadingDot() antlr.Token { return s.leadingDot } |
| 6895 |
no test coverage detected