(visitor antlr.ParseTreeVisitor)
| 1853 | } |
| 1854 | |
| 1855 | func (s *FormalParametersContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 1856 | switch t := visitor.(type) { |
| 1857 | case GScriptVisitor: |
| 1858 | return t.VisitFormalParameters(s) |
| 1859 | |
| 1860 | default: |
| 1861 | return t.VisitChildren(s) |
| 1862 | } |
| 1863 | } |
| 1864 | |
| 1865 | func (p *GScriptParser) FormalParameters() (localctx IFormalParametersContext) { |
| 1866 | localctx = NewFormalParametersContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected