We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 613fe12 commit 4b126d4Copy full SHA for 4b126d4
1 file changed
expr/binary.go
@@ -72,7 +72,7 @@ func (b *Binary) walk(fn func(ident node.Node, values *Values, operator, parentO
72
}
73
if binY, ok := b.Y.(*Binary); ok {
74
if nested, ok := binY.Y.(*Binary); ok {
75
- if err = nested.walk(fn, b.Op); err != nil {
+ if err = nested.walk(fn, binY.Op); err != nil {
76
return err
77
78
0 commit comments