(visitor antlr.ParseTreeVisitor)
| 1583 | } |
| 1584 | |
| 1585 | func (s *TypeTypeOrVoidContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 1586 | switch t := visitor.(type) { |
| 1587 | case GScriptVisitor: |
| 1588 | return t.VisitTypeTypeOrVoid(s) |
| 1589 | |
| 1590 | default: |
| 1591 | return t.VisitChildren(s) |
| 1592 | } |
| 1593 | } |
| 1594 | |
| 1595 | func (p *GScriptParser) TypeTypeOrVoid() (localctx ITypeTypeOrVoidContext) { |
| 1596 | localctx = NewTypeTypeOrVoidContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected