We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f57a807 + e310092 commit b1ac3e8Copy full SHA for b1ac3e8
ast/walk.go
@@ -71,6 +71,7 @@ func Walk(v Visitor, node Node) {
71
72
case *If:
73
Walk(v, n.Condition)
74
+ walkStmtList(v, n.Body)
75
for _, elseif := range n.ElseIf {
76
Walk(v, elseif)
77
}
0 commit comments