(visitor antlr.ParseTreeVisitor)
| 2190 | } |
| 2191 | |
| 2192 | func (s *FormalParameterContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 2193 | switch t := visitor.(type) { |
| 2194 | case GScriptVisitor: |
| 2195 | return t.VisitFormalParameter(s) |
| 2196 | |
| 2197 | default: |
| 2198 | return t.VisitChildren(s) |
| 2199 | } |
| 2200 | } |
| 2201 | |
| 2202 | func (p *GScriptParser) FormalParameter() (localctx IFormalParameterContext) { |
| 2203 | localctx = NewFormalParameterContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected