• Daniel Martí's avatar
    cmd/vet: skip self-assigns with side effects · 320b0cdd
    Daniel Martí authored
    The existing logic for whether the left and right parts of an assignment
    were equal only checked that the gofmt representation of the two was
    equal. This only checks that the ASTs were equal.
    
    However, that method is flawed. For example, if either of the
    expressions contains a function call, the expressions may actually be
    different even if their ASTs are the same. An obvious case is a func
    call to math/rand to get a random integer, such as the one added in the
    test.
    
    If either of the expressions may have side effects, simply skip the
    check. Reuse the logic from bool.go's hasSideEffects.
    
    Fixes #22174.
    
    Change-Id: Ied7f7543dc2bb8852e817230756c6d23bc801d90
    Reviewed-on: https://go-review.googlesource.com/69116
    Run-TryBot: Daniel Martí <mvdan@mvdan.cc>
    TryBot-Result: Gobot Gobot <gobot@golang.org>
    Reviewed-by: 's avatarRob Pike <r@golang.org>
    320b0cdd
Name
Last commit
Last update
.github Loading commit data...
api Loading commit data...
doc Loading commit data...
lib/time Loading commit data...
misc Loading commit data...
src Loading commit data...
test Loading commit data...
.gitattributes Loading commit data...
.gitignore Loading commit data...
AUTHORS Loading commit data...
CONTRIBUTING.md Loading commit data...
CONTRIBUTORS Loading commit data...
LICENSE Loading commit data...
PATENTS Loading commit data...
README.md Loading commit data...
favicon.ico Loading commit data...
robots.txt Loading commit data...