(visitor antlr.ParseTreeVisitor)
| 1456 | } |
| 1457 | |
| 1458 | func (s *FunctionBodyContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 1459 | switch t := visitor.(type) { |
| 1460 | case GScriptVisitor: |
| 1461 | return t.VisitFunctionBody(s) |
| 1462 | |
| 1463 | default: |
| 1464 | return t.VisitChildren(s) |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | func (p *GScriptParser) FunctionBody() (localctx IFunctionBodyContext) { |
| 1469 | localctx = NewFunctionBodyContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected