MCPcopy Create free account
hub / github.com/crossoverJie/gscript / Accept

Method Accept

parser/gscript_parser.go:2001–2009  ·  view source on GitHub ↗
(visitor antlr.ParseTreeVisitor)

Source from the content-addressed store, hash-verified

1999}
2000
2001func (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
2011func (p *GScriptParser) FormalParameterList() (localctx IFormalParameterListContext) {
2012 localctx = NewFormalParameterListContext(p, p.GetParserRuleContext(), p.GetState())

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected