1
0
mirror of https://github.com/golang/go synced 2024-11-21 20:04:44 -07:00

exp/eval: build fix for parser.ParseFile API change.

R=golang-dev, nigeltao
CC=golang-dev
https://golang.org/cl/3283042
This commit is contained in:
Anschel Schaffer-Cohen 2010-11-29 09:25:31 +11:00 committed by Nigel Tao
parent 5b4319f332
commit f5bc87cb75

View File

@ -25,7 +25,7 @@ func main() {
println(err.String())
os.Exit(1)
}
file, err := parser.ParseFile(*filename, data, nil, 0)
file, err := parser.ParseFile(*filename, data, 0)
if err != nil {
println(err.String())
os.Exit(1)