Этот коммит содержится в:
andygeiss 2018-04-10 14:09:07 +02:00
родитель 15babc8bf5
коммит da7a66f467

Просмотреть файл

@ -7,7 +7,6 @@ import (
"go/parser" "go/parser"
"go/token" "go/token"
"io" "io"
"os"
"strings" "strings"
) )
@ -75,7 +74,7 @@ func (w *Worker) Start() error {
} }
} }
// Print the AST. // Print the AST.
ast.Fprint(os.Stderr, fset, file, nil) //ast.Fprint(os.Stderr, fset, file, nil)
return nil return nil
} }