| 145 | } |
| 146 | |
| 147 | type baseVisitor struct { |
| 148 | visitExpr func(Expr) |
| 149 | visitEntryExpr func(EntryExpr) |
| 150 | } |
| 151 | |
| 152 | // VisitExpr visits the Expr if the internal expr visitor has been configured. |
| 153 | func (v *baseVisitor) VisitExpr(e Expr) { |
nothing calls this directly
no outgoing calls
no test coverage detected