(visitor antlr.ParseTreeVisitor)
| 2352 | } |
| 2353 | |
| 2354 | func (s *TemporalBoundContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 2355 | switch t := visitor.(type) { |
| 2356 | case MangleVisitor: |
| 2357 | return t.VisitTemporalBound(s) |
| 2358 | |
| 2359 | default: |
| 2360 | return t.VisitChildren(s) |
| 2361 | } |
| 2362 | } |
| 2363 | |
| 2364 | func (p *MangleParser) TemporalBound() (localctx ITemporalBoundContext) { |
| 2365 | localctx = NewTemporalBoundContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected