aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authorNia Waldvogel <[email protected]>2021-12-31 13:36:33 -0500
committerNia <[email protected]>2022-01-19 14:42:02 -0500
commitea2a6b70b209b4760ec82cb4a64417de9c3668e4 (patch)
treebeac011298f9d949cbc9df87b917551269325a9d /main.go
parentd054d4d5123d4ecc5c691ab103a4062513a90b51 (diff)
downloadtinygo-ea2a6b70b209b4760ec82cb4a64417de9c3668e4.tar.gz
tinygo-ea2a6b70b209b4760ec82cb4a64417de9c3668e4.zip
internal/task: remove coroutines
Diffstat (limited to 'main.go')
-rw-r--r--main.go12
1 files changed, 1 insertions, 11 deletions
diff --git a/main.go b/main.go
index 91ba96f66..a23a2618d 100644
--- a/main.go
+++ b/main.go
@@ -30,7 +30,6 @@ import (
"github.com/tinygo-org/tinygo/goenv"
"github.com/tinygo-org/tinygo/interp"
"github.com/tinygo-org/tinygo/loader"
- "github.com/tinygo-org/tinygo/transform"
"tinygo.org/x/go-llvm"
"go.bug.st/serial"
@@ -1100,15 +1099,6 @@ func printCompilerError(logln func(...interface{}), err error) {
logln()
}
}
- case transform.CoroutinesError:
- logln(err.Pos.String() + ": " + err.Msg)
- logln("\ntraceback:")
- for _, line := range err.Traceback {
- logln(line.Name)
- if line.Position.IsValid() {
- logln("\t" + line.Position.String())
- }
- }
case loader.Errors:
logln("#", err.Pkg.ImportPath)
for _, err := range err.Errs {
@@ -1195,7 +1185,7 @@ func main() {
opt := flag.String("opt", "z", "optimization level: 0, 1, 2, s, z")
gc := flag.String("gc", "", "garbage collector to use (none, leaking, conservative)")
panicStrategy := flag.String("panic", "print", "panic strategy (print, trap)")
- scheduler := flag.String("scheduler", "", "which scheduler to use (none, coroutines, tasks, asyncify)")
+ scheduler := flag.String("scheduler", "", "which scheduler to use (none, tasks, asyncify)")
serial := flag.String("serial", "", "which serial output to use (none, uart, usb)")
printIR := flag.Bool("printir", false, "print LLVM IR")
dumpSSA := flag.Bool("dumpssa", false, "dump internal Go SSA")