diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2021-01-01 08:43:54 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-01 08:43:54 +1100 |
commit | 012f99bd9a0463813653bf8438e09b3247395984 (patch) | |
tree | da00dc71787f564bf1cd8308ebc3fad621fb7771 /cli/tests/subdir/worker_unstable.ts | |
parent | 5f4e1767fea326d507395eafee25ab4ecc4b67b9 (diff) |
refactor(cli): runtime compiler APIs consolidated to Deno.emit() (#8799)
Closes: #4752
Diffstat (limited to 'cli/tests/subdir/worker_unstable.ts')
-rw-r--r-- | cli/tests/subdir/worker_unstable.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tests/subdir/worker_unstable.ts b/cli/tests/subdir/worker_unstable.ts index 3a1ed8b74..a5b5f7ba2 100644 --- a/cli/tests/subdir/worker_unstable.ts +++ b/cli/tests/subdir/worker_unstable.ts @@ -1,5 +1,5 @@ console.log(Deno.permissions.query); -console.log(Deno.compile); +console.log(Deno.emit); self.onmessage = () => { self.close(); }; |