mirror of
https://github.com/denoland/deno.git
synced 2025-07-24 13:44:08 +00:00
Update to Prettier 2 and use ES Private Fields (#4498)
This commit is contained in:
parent
1397b8e0e7
commit
bced52505f
329 changed files with 2787 additions and 2430 deletions
|
@ -14,7 +14,7 @@ import {
|
|||
nonEnumerable,
|
||||
windowOrWorkerGlobalScopeMethods,
|
||||
windowOrWorkerGlobalScopeProperties,
|
||||
eventTargetProperties
|
||||
eventTargetProperties,
|
||||
} from "./globals.ts";
|
||||
import * as webWorkerOps from "./ops/web_worker.ts";
|
||||
import { LocationImpl } from "./web/location.ts";
|
||||
|
@ -85,7 +85,7 @@ export const workerRuntimeGlobalProperties = {
|
|||
// TODO: should be readonly?
|
||||
close: nonEnumerable(close),
|
||||
postMessage: writable(postMessage),
|
||||
workerMessageRecvCallback: nonEnumerable(workerMessageRecvCallback)
|
||||
workerMessageRecvCallback: nonEnumerable(workerMessageRecvCallback),
|
||||
};
|
||||
|
||||
export function bootstrapWorkerRuntime(name: string): void {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue