(visitor antlr.ParseTreeVisitor)
| 824 | } |
| 825 | |
| 826 | func (s *ClassBodyDeclarationContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 827 | switch t := visitor.(type) { |
| 828 | case GScriptVisitor: |
| 829 | return t.VisitClassBodyDeclaration(s) |
| 830 | |
| 831 | default: |
| 832 | return t.VisitChildren(s) |
| 833 | } |
| 834 | } |
| 835 | |
| 836 | func (p *GScriptParser) ClassBodyDeclaration() (localctx IClassBodyDeclarationContext) { |
| 837 | localctx = NewClassBodyDeclarationContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected