mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 20:59:10 +00:00
Support async/await by including ES2017
This required adjusting the module loading system.
This commit is contained in:
parent
cbfb7d8720
commit
7609df9d4f
6 changed files with 53 additions and 15 deletions
2
util.go
2
util.go
|
@ -9,7 +9,7 @@ import (
|
|||
func logDebug(format string, v ...interface{}) {
|
||||
// Unless the debug flag is specified, discard logs.
|
||||
if *flagDebug {
|
||||
fmt.Printf(format+"\n", v)
|
||||
fmt.Printf(format+"\n", v...)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue