(visitor antlr.ParseTreeVisitor)
| 1719 | } |
| 1720 | |
| 1721 | func (s *QualifiedNameListContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 1722 | switch t := visitor.(type) { |
| 1723 | case GScriptVisitor: |
| 1724 | return t.VisitQualifiedNameList(s) |
| 1725 | |
| 1726 | default: |
| 1727 | return t.VisitChildren(s) |
| 1728 | } |
| 1729 | } |
| 1730 | |
| 1731 | func (p *GScriptParser) QualifiedNameList() (localctx IQualifiedNameListContext) { |
| 1732 | localctx = NewQualifiedNameListContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected