(visitor antlr.ParseTreeVisitor)
| 1630 | } |
| 1631 | |
| 1632 | func (s *BoundsBlockContext) Accept(visitor antlr.ParseTreeVisitor) interface{} { |
| 1633 | switch t := visitor.(type) { |
| 1634 | case MangleVisitor: |
| 1635 | return t.VisitBoundsBlock(s) |
| 1636 | |
| 1637 | default: |
| 1638 | return t.VisitChildren(s) |
| 1639 | } |
| 1640 | } |
| 1641 | |
| 1642 | func (p *MangleParser) BoundsBlock() (localctx IBoundsBlockContext) { |
| 1643 | localctx = NewBoundsBlockContext(p, p.GetParserRuleContext(), p.GetState()) |
nothing calls this directly
no test coverage detected