(visitor antlr.ParseTreeVisitor)
| 698 | } |
| 699 | |
| 700 | func (s *ClassBodyContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 701 | switch t := visitor.(type) { |
| 702 | case GScriptVisitor: |
| 703 | return t.VisitClassBody(s) |
| 704 | |
| 705 | default: |
| 706 | return t.VisitChildren(s) |
| 707 | } |
| 708 | } |
| 709 | |
| 710 | func (p *GScriptParser) ClassBody() (localctx IClassBodyContext) { |
| 711 | localctx = NewClassBodyContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected