(visitor antlr.ParseTreeVisitor)
| 957 | } |
| 958 | |
| 959 | func (s *MemberDeclarationContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 960 | switch t := visitor.(type) { |
| 961 | case GScriptVisitor: |
| 962 | return t.VisitMemberDeclaration(s) |
| 963 | |
| 964 | default: |
| 965 | return t.VisitChildren(s) |
| 966 | } |
| 967 | } |
| 968 | |
| 969 | func (p *GScriptParser) MemberDeclaration() (localctx IMemberDeclarationContext) { |
| 970 | localctx = NewMemberDeclarationContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected