update deps

This commit is contained in:
Andrey Nering
2017-07-30 19:11:34 -03:00
parent 31faf05c3a
commit f91bbe9397
58 changed files with 5000 additions and 3954 deletions

View File

@@ -33,9 +33,6 @@ func Walk(node Node, f func(Node) bool) {
if x.Cmd != nil {
Walk(x.Cmd, f)
}
for _, a := range x.Assigns {
Walk(a, f)
}
for _, r := range x.Redirs {
Walk(r, f)
}
@@ -61,6 +58,9 @@ func Walk(node Node, f func(Node) bool) {
Walk(x.Hdoc, f)
}
case *CallExpr:
for _, a := range x.Assigns {
Walk(a, f)
}
walkWords(x.Args, f)
case *Subshell:
walkStmts(x.StmtList, f)