mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
10e4b2e140
Yearly tradition of creating extra noise in git.
79 lines
1.8 KiB
JavaScript
79 lines
1.8 KiB
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
"use strict";
|
|
|
|
// @ts-check
|
|
/// <reference path="../../core/internal.d.ts" />
|
|
|
|
((window) => {
|
|
const { EventTarget } = window.__bootstrap.eventTarget;
|
|
const {
|
|
Symbol,
|
|
SymbolToStringTag,
|
|
TypeError,
|
|
} = window.__bootstrap.primordials;
|
|
|
|
const illegalConstructorKey = Symbol("illegalConstructorKey");
|
|
|
|
class Window extends EventTarget {
|
|
constructor(key = null) {
|
|
if (key !== illegalConstructorKey) {
|
|
throw new TypeError("Illegal constructor.");
|
|
}
|
|
super();
|
|
}
|
|
|
|
get [SymbolToStringTag]() {
|
|
return "Window";
|
|
}
|
|
}
|
|
|
|
class WorkerGlobalScope extends EventTarget {
|
|
constructor(key = null) {
|
|
if (key != illegalConstructorKey) {
|
|
throw new TypeError("Illegal constructor.");
|
|
}
|
|
super();
|
|
}
|
|
|
|
get [SymbolToStringTag]() {
|
|
return "WorkerGlobalScope";
|
|
}
|
|
}
|
|
|
|
class DedicatedWorkerGlobalScope extends WorkerGlobalScope {
|
|
constructor(key = null) {
|
|
if (key != illegalConstructorKey) {
|
|
throw new TypeError("Illegal constructor.");
|
|
}
|
|
super();
|
|
}
|
|
|
|
get [SymbolToStringTag]() {
|
|
return "DedicatedWorkerGlobalScope";
|
|
}
|
|
}
|
|
|
|
window.__bootstrap.globalInterfaces = {
|
|
DedicatedWorkerGlobalScope,
|
|
Window,
|
|
WorkerGlobalScope,
|
|
dedicatedWorkerGlobalScopeConstructorDescriptor: {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value: DedicatedWorkerGlobalScope,
|
|
writable: true,
|
|
},
|
|
windowConstructorDescriptor: {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value: Window,
|
|
writable: true,
|
|
},
|
|
workerGlobalScopeConstructorDescriptor: {
|
|
configurable: true,
|
|
enumerable: false,
|
|
value: WorkerGlobalScope,
|
|
writable: true,
|
|
},
|
|
};
|
|
})(this);
|