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.
1 parent f57a807 commit e310092Copy full SHA for e310092
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