From 012f99bd9a0463813653bf8438e09b3247395984 Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Fri, 1 Jan 2021 08:43:54 +1100 Subject: refactor(cli): runtime compiler APIs consolidated to Deno.emit() (#8799) Closes: #4752 --- cli/tests/subdir/worker_unstable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli/tests/subdir') 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(); }; -- cgit v1.3