Commit f5bc87cb authored by Anschel Schaffer-Cohen's avatar Anschel Schaffer-Cohen Committed by Nigel Tao

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

R=golang-dev, nigeltao
CC=golang-dev
https://golang.org/cl/3283042
parent 5b4319f3
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment