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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
import { define } from "../scripts/class-definitions";
export default [
define({
name: "Request",
construct: true,
finalize: true,
klass: {},
JSType: "0b11101110",
estimatedSize: true,
proto: {
text: { fn: "getText" },
json: { fn: "getJSON" },
body: { getter: "getBody", cache: true },
arrayBuffer: { fn: "getArrayBuffer" },
blob: { fn: "getBlob" },
clone: { fn: "doClone", length: 1 },
cache: {
getter: "getCache",
},
credentials: {
getter: "getCredentials",
},
destination: {
getter: "getDestination",
},
headers: {
getter: "getHeaders",
cache: true,
},
integrity: {
getter: "getIntegrity",
},
method: {
getter: "getMethod",
},
mode: {
getter: "getMode",
},
redirect: {
getter: "getRedirect",
},
referrer: {
getter: "getReferrer",
},
referrerPolicy: {
getter: "getReferrerPolicy",
},
url: {
getter: "getUrl",
cache: true,
},
bodyUsed: {
getter: "getBodyUsed",
},
},
}),
define({
name: "Response",
construct: true,
finalize: true,
JSType: "0b11101110",
estimatedSize: true,
klass: {
json: {
fn: "constructJSON",
},
redirect: {
fn: "constructRedirect",
},
error: {
fn: "constructError",
},
},
proto: {
url: {
getter: "getURL",
cache: true,
},
body: { getter: "getBody", cache: true },
text: { fn: "getText" },
json: { fn: "getJSON" },
arrayBuffer: { fn: "getArrayBuffer" },
blob: { fn: "getBlob" },
clone: { fn: "doClone", length: 1 },
type: {
getter: "getResponseType",
},
headers: {
getter: "getHeaders",
cache: true,
},
redirected: {
getter: "getRedirected",
},
statusText: {
getter: "getStatusText",
cache: true,
},
status: {
getter: "getStatus",
},
ok: {
getter: "getOK",
},
bodyUsed: {
getter: "getBodyUsed",
},
},
}),
define({
name: "Blob",
construct: true,
finalize: true,
JSType: "0b11101110",
klass: {},
proto: {
text: { fn: "getText" },
json: { fn: "getJSON" },
arrayBuffer: { fn: "getArrayBuffer" },
slice: { fn: "getSlice", length: 2 },
stream: { fn: "getStream", length: 1 },
type: {
getter: "getType",
setter: "setType",
},
size: {
getter: "getSize",
},
writer: {
fn: "getWriter",
length: 1,
},
},
}),
];
|