forked from benjamn/ast-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fork.ts
58 lines (48 loc) · 1.46 KB
/
fork.ts
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
import typesPlugin from "./lib/types";
import pathVisitorPlugin from "./lib/path-visitor";
import equivPlugin from "./lib/equiv";
import pathPlugin from "./lib/path";
import nodePathPlugin from "./lib/node-path";
import { Fork, Plugin } from "./types";
export default function (plugins: Plugin<any>[]) {
const fork = createFork();
const types = fork.use(typesPlugin);
plugins.forEach(fork.use);
types.finalize();
const PathVisitor = fork.use(pathVisitorPlugin);
return {
Type: types.Type,
builtInTypes: types.builtInTypes,
namedTypes: types.namedTypes,
builders: types.builders,
defineMethod: types.defineMethod,
getFieldNames: types.getFieldNames,
getFieldValue: types.getFieldValue,
eachField: types.eachField,
someField: types.someField,
getSupertypeNames: types.getSupertypeNames,
getBuilderName: types.getBuilderName,
astNodesAreEquivalent: fork.use(equivPlugin),
finalize: types.finalize,
Path: fork.use(pathPlugin),
NodePath: fork.use(nodePathPlugin),
PathVisitor,
use: fork.use,
visit: PathVisitor.visit,
};
};
function createFork(): Fork {
const used: Plugin<unknown>[] = [];
const usedResult: unknown[] = [];
function use<T>(plugin: Plugin<T>): T {
var idx = used.indexOf(plugin);
if (idx === -1) {
idx = used.length;
used.push(plugin);
usedResult[idx] = plugin(fork);
}
return usedResult[idx] as T;
}
var fork: Fork = { use };
return fork;
}