astnorm
astnorm copied to clipboard
AST normalization experiment
astnorm
Go AST normalization experiment.
THIS IS NOT A PROPER LIBRARY (yet?).
DO NOT USE.
It will probably be completely re-written before it becomes usable.
Normalized code examples
- Swap values.
Before | After |
---|---|
|
|
- Remove elements that are equal to
toRemove+1
.
Before | After |
---|---|
|
|
Usage examples
- cmd/go-normalize: normalize given Go file
-
cmd/grepfunc: turn Go code into a pattern for
gogrep
and run it
Potential workflow for code searching:
1. Code search
- Normalize the entire Go stdlib
- Then normalize your function
- Run
grepfunc
against normalized stdlib - If function you implemented has implementation under the stdlib, you'll probably find it
Basically, instead of stdlib you can use any kind of Go corpus.
Another code search related tasks that can be simplified by astnorm
are code similarity
evaluation and code duplication detection of any kind.
2. Static analysis
Suppose we have badcode.go
file:
package badpkg
func NotEqual(x1, x2 int) bool {
return (x1) != x1
}
There is an obvious mistake there, x1
used twice, but because of extra parenthesis, linters may not detect this issue:
$ staticcheck badcode.go
# No output
Let's normalize the input first and then run staticcheck
:
go-normalize badcode.go > normalized_badcode.go
staticcheck normalized_badcode.go
normalized_badcode.go:4:9: identical expressions on the left and right side of the '!=' operator (SA4000)
And we get the warning we deserve!
No changes into staticcheck
or any other linter are required.
See also: demo script.