1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
((window) => {
const add = Symbol("add");
const signalAbort = Symbol("signalAbort");
const remove = Symbol("remove");
const illegalConstructorKey = Symbol("illegalConstructorKey");
class AbortSignal extends EventTarget {
#aborted = false;
#abortAlgorithms = new Set();
[add](algorithm) {
this.#abortAlgorithms.add(algorithm);
}
[signalAbort]() {
if (this.#aborted) {
return;
}
this.#aborted = true;
for (const algorithm of this.#abortAlgorithms) {
algorithm();
}
this.#abortAlgorithms.clear();
this.dispatchEvent(new Event("abort"));
}
[remove](algorithm) {
this.#abortAlgorithms.delete(algorithm);
}
constructor(key) {
if (key != illegalConstructorKey) {
throw new TypeError("Illegal constructor.");
}
super();
}
get aborted() {
return Boolean(this.#aborted);
}
get [Symbol.toStringTag]() {
return "AbortSignal";
}
}
defineEventHandler(AbortSignal.prototype, "abort");
class AbortController {
#signal = new AbortSignal(illegalConstructorKey);
get signal() {
return this.#signal;
}
abort() {
this.#signal[signalAbort]();
}
get [Symbol.toStringTag]() {
return "AbortController";
}
}
const handlerSymbol = Symbol("eventHandlers");
function defineEventHandler(emitter, name) {
// HTML specification section 8.1.5.1
Object.defineProperty(emitter, `on${name}`, {
get() {
return this[handlerSymbol]?.get(name);
},
set(value) {
const oldListener = this[handlerSymbol]?.get(name);
if (oldListener) {
this.removeEventListener(name, oldListener);
}
if (!this[handlerSymbol]) {
this[handlerSymbol] = new Map();
}
this.addEventListener(name, value);
this[handlerSymbol].set(value);
},
configurable: true,
enumerable: true,
});
}
window.AbortSignal = AbortSignal;
window.AbortController = AbortController;
window.__bootstrap = window.__bootstrap || {};
window.__bootstrap.abortSignal = {
add,
signalAbort,
remove,
};
})(this);
|