-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.ts
44 lines (41 loc) · 1.41 KB
/
main.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
import * as collect from "./collect";
import * as identifer from "./identifer";
import * as toString from "./toString";
import * as util from "./util";
import { CodeType, Identifer, JsTsCode } from "./data";
export const generateCodeAsString = (
code: JsTsCode,
codeType: CodeType
): string => {
// グローバル空間にある名前とimportしたモジュールのパスを集める
const usedNameAndModulePath: util.UsedNameAndModulePathSet = collect.collectInCode(
code
);
return toString.toString(
code,
createImportedModuleName(usedNameAndModulePath),
codeType
);
};
/**
* 使われている名前, モジュールのパスから, モジュールのパスとnamed importの識別子のMapを生成する
* @param usedNameAndModulePath
*/
const createImportedModuleName = (
usedNameAndModulePath: util.UsedNameAndModulePathSet
): ReadonlyMap<string, Identifer> => {
let identiferIndex = identifer.initialIdentiferIndex;
const importedModuleNameMap = new Map<string, Identifer>();
for (const modulePath of usedNameAndModulePath.modulePathSet) {
const identiferAndNextIdentiferIndex = identifer.createIdentifer(
identiferIndex,
usedNameAndModulePath.usedNameSet
);
importedModuleNameMap.set(
modulePath,
identiferAndNextIdentiferIndex.identifer
);
identiferIndex = identiferAndNextIdentiferIndex.nextIdentiferIndex;
}
return importedModuleNameMap;
};