compiler: fix compiler.go import order

go/parser is part of the standard library.

No functional change.
This commit is contained in:
Marc-Antoine Ruel
2018-10-24 11:19:41 -04:00
committed by Ayke van Laethem
parent 586d3b33b1
commit 63b0b4b90c
+1 -1
View File
@@ -5,6 +5,7 @@ import (
"fmt"
"go/build"
"go/constant"
"go/parser"
"go/token"
"go/types"
"os"
@@ -16,7 +17,6 @@ import (
"github.com/aykevl/go-llvm"
"github.com/aykevl/tinygo/ir"
"go/parser"
"golang.org/x/tools/go/loader"
"golang.org/x/tools/go/ssa"
)