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
|
import { define } from "../scripts/class-definitions";
export default [
define({
name: "Transpiler",
construct: true,
finalize: true,
hasPendingActivity: false,
configurable: false,
klass: {},
JSType: "0b11101110",
proto: {
scanImports: {
fn: "scanImports",
length: 2,
},
scan: {
fn: "scan",
length: 2,
},
transform: {
fn: "transform",
length: 2,
},
transformSync: {
fn: "transformSync",
length: 2,
},
},
}),
define({
name: "Bundler",
construct: true,
finalize: true,
hasPendingActivity: true,
configurable: false,
klass: {},
JSType: "0b11101110",
proto: {
handle: {
fn: "handleRequest",
length: 2,
},
write: {
fn: "write",
length: 1,
},
},
}),
];
|