(visitor antlr.ParseTreeVisitor)
| 411 | } |
| 412 | |
| 413 | func (s *StartContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 414 | switch t := visitor.(type) { |
| 415 | case MangleVisitor: |
| 416 | return t.VisitStart(s) |
| 417 | |
| 418 | default: |
| 419 | return t.VisitChildren(s) |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | func (p *MangleParser) Start_() (localctx IStartContext) { |
| 424 | localctx = NewStartContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected