(node *Node)
| 199 | } |
| 200 | |
| 201 | func (v *NodeVisitor) visitEmbeddedStatement(node *Node) *Node { |
| 202 | if v.Hooks.VisitEmbeddedStatement != nil { |
| 203 | return v.Hooks.VisitEmbeddedStatement(node, v) |
| 204 | } |
| 205 | if v.Hooks.VisitNode != nil { |
| 206 | return v.liftToBlock(v.Hooks.VisitNode(node, v)) |
| 207 | } |
| 208 | return v.VisitEmbeddedStatement(node) |
| 209 | } |
| 210 | |
| 211 | func (v *NodeVisitor) visitIterationBody(node *Statement) *Statement { |
| 212 | if v.Hooks.VisitIterationBody != nil { |
no test coverage detected