(visitor antlr.ParseTreeVisitor)
| 1999 | } |
| 2000 | |
| 2001 | func (s *FormalParameterListContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 2002 | switch t := visitor.(type) { |
| 2003 | case GScriptVisitor: |
| 2004 | return t.VisitFormalParameterList(s) |
| 2005 | |
| 2006 | default: |
| 2007 | return t.VisitChildren(s) |
| 2008 | } |
| 2009 | } |
| 2010 | |
| 2011 | func (p *GScriptParser) FormalParameterList() (localctx IFormalParameterListContext) { |
| 2012 | localctx = NewFormalParameterListContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected