mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +00:00
compiler: fix compiler.go import order
go/parser is part of the standard library. No functional change.
This commit is contained in:
committed by
Ayke van Laethem
parent
586d3b33b1
commit
63b0b4b90c
@@ -5,6 +5,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"go/build"
|
"go/build"
|
||||||
"go/constant"
|
"go/constant"
|
||||||
|
"go/parser"
|
||||||
"go/token"
|
"go/token"
|
||||||
"go/types"
|
"go/types"
|
||||||
"os"
|
"os"
|
||||||
@@ -16,7 +17,6 @@ import (
|
|||||||
|
|
||||||
"github.com/aykevl/go-llvm"
|
"github.com/aykevl/go-llvm"
|
||||||
"github.com/aykevl/tinygo/ir"
|
"github.com/aykevl/tinygo/ir"
|
||||||
"go/parser"
|
|
||||||
"golang.org/x/tools/go/loader"
|
"golang.org/x/tools/go/loader"
|
||||||
"golang.org/x/tools/go/ssa"
|
"golang.org/x/tools/go/ssa"
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user