(visitor antlr.ParseTreeVisitor)
| 531 | } |
| 532 | |
| 533 | func (s *ClassDeclarationContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 534 | switch t := visitor.(type) { |
| 535 | case GScriptVisitor: |
| 536 | return t.VisitClassDeclaration(s) |
| 537 | |
| 538 | default: |
| 539 | return t.VisitChildren(s) |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | func (p *GScriptParser) ClassDeclaration() (localctx IClassDeclarationContext) { |
| 544 | localctx = NewClassDeclarationContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected