aboutsummaryrefslogtreecommitdiffhomepage
path: root/compiler/channel.go
diff options
context:
space:
mode:
authorAyke van Laethem <[email protected]>2019-01-31 16:20:38 +0100
committerAyke van Laethem <[email protected]>2019-01-31 16:22:05 +0100
commit1db9a162da6c53709e7b6c53e855d57afa4efbaf (patch)
treeabafaaf4c9d39460ae74edf1668470ccbb93bb10 /compiler/channel.go
parent19b4476cbbdb5fd43491ea11a94df12c4507e2a0 (diff)
downloadtinygo-1db9a162da6c53709e7b6c53e855d57afa4efbaf.tar.gz
tinygo-1db9a162da6c53709e7b6c53e855d57afa4efbaf.zip
all: go fmt
The import path changes changed the order of imports, but no `go fmt` was run before the commit. Oops...
Diffstat (limited to 'compiler/channel.go')
-rw-r--r--compiler/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/channel.go b/compiler/channel.go
index 648bef200..05973ecbf 100644
--- a/compiler/channel.go
+++ b/compiler/channel.go
@@ -6,8 +6,8 @@ package compiler
import (
"go/types"
- "tinygo.org/x/go-llvm"
"golang.org/x/tools/go/ssa"
+ "tinygo.org/x/go-llvm"
)
// emitMakeChan returns a new channel value for the given channel type.