(parser antlr.Parser, ctx antlr.ParserRuleContext)
| 5206 | } |
| 5207 | |
| 5208 | func NewSimpleIdentifierContext(parser antlr.Parser, ctx antlr.ParserRuleContext) *SimpleIdentifierContext { |
| 5209 | var p = new(SimpleIdentifierContext) |
| 5210 | |
| 5211 | InitEmptyEscapeIdentContext(&p.EscapeIdentContext) |
| 5212 | p.parser = parser |
| 5213 | p.CopyAll(ctx.(*EscapeIdentContext)) |
| 5214 | |
| 5215 | return p |
| 5216 | } |
| 5217 | |
| 5218 | func (s *SimpleIdentifierContext) GetId() antlr.Token { return s.id } |
| 5219 |
no test coverage detected