(visitor antlr.ParseTreeVisitor)
| 2192 | } |
| 2193 | |
| 2194 | func (s *TemporalAnnotationContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 2195 | switch t := visitor.(type) { |
| 2196 | case MangleVisitor: |
| 2197 | return t.VisitTemporalAnnotation(s) |
| 2198 | |
| 2199 | default: |
| 2200 | return t.VisitChildren(s) |
| 2201 | } |
| 2202 | } |
| 2203 | |
| 2204 | func (p *MangleParser) TemporalAnnotation() (localctx ITemporalAnnotationContext) { |
| 2205 | localctx = NewTemporalAnnotationContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected