@powerlines/deepkit 0.5.5 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/vendor/type-compiler/chunk-MCNMRQDT.js +3513 -0
- package/dist/vendor/type-compiler/chunk-RH4YMONA.js +7064 -0
- package/dist/vendor/type-compiler/chunk-RZKB5IQZ.cjs +3531 -0
- package/dist/vendor/type-compiler/chunk-WOXMCJJU.cjs +7078 -0
- package/dist/vendor/type-compiler/compiler.cjs +13 -12
- package/dist/vendor/type-compiler/compiler.js +5 -2
- package/dist/vendor/type-compiler/config.cjs +10 -9
- package/dist/vendor/type-compiler/config.js +5 -1
- package/dist/vendor/type-compiler/index.cjs +29 -21
- package/dist/vendor/type-compiler/index.js +12 -4
- package/package.json +4 -4
- package/dist/vendor/type-compiler/chunk-IOMA7ABE.js +0 -359
- package/dist/vendor/type-compiler/chunk-K5KCTNDL.cjs +0 -2678
- package/dist/vendor/type-compiler/chunk-L3KIZV6P.js +0 -2664
- package/dist/vendor/type-compiler/chunk-M3FJ3QXG.cjs +0 -377
|
@@ -1,377 +0,0 @@
|
|
|
1
|
-
'use strict';
|
|
2
|
-
|
|
3
|
-
var path = require('path');
|
|
4
|
-
var ts2 = require('typescript');
|
|
5
|
-
var fs = require('fs');
|
|
6
|
-
var micromatch = require('micromatch');
|
|
7
|
-
|
|
8
|
-
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
9
|
-
|
|
10
|
-
var ts2__default = /*#__PURE__*/_interopDefault(ts2);
|
|
11
|
-
var micromatch__default = /*#__PURE__*/_interopDefault(micromatch);
|
|
12
|
-
|
|
13
|
-
var __defProp = Object.defineProperty;
|
|
14
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
15
|
-
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
16
|
-
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
17
|
-
}) : x)(function(x) {
|
|
18
|
-
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
19
|
-
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
20
|
-
});
|
|
21
|
-
|
|
22
|
-
// ../../node_modules/.pnpm/@deepkit+type-compiler@1.0.5_patch_hash=88e8267ac73f46799c551ae3696181dc1f272895f490f8c_ef8b874d406bec4900e1fddc1ea375be/node_modules/@deepkit/type-compiler/dist/esm/src/debug.js
|
|
23
|
-
function isDebug(level = 1) {
|
|
24
|
-
const expected = "deepkit" + (level > 1 ? "+".repeat(level - 1) : "");
|
|
25
|
-
return "undefined" !== typeof process && "string" === typeof process.env.DEBUG && process.env.DEBUG.includes(expected);
|
|
26
|
-
}
|
|
27
|
-
__name(isDebug, "isDebug");
|
|
28
|
-
function debug(...message) {
|
|
29
|
-
if (isDebug(1)) {
|
|
30
|
-
console.debug(...message);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
__name(debug, "debug");
|
|
34
|
-
function debug2(...message) {
|
|
35
|
-
if (isDebug(2)) {
|
|
36
|
-
console.debug(...message);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
__name(debug2, "debug2");
|
|
40
|
-
var { createSourceFile, resolveModuleName, isStringLiteral, JSDocParsingMode, ScriptTarget } = ts2__default.default;
|
|
41
|
-
function patternMatch(path, patterns, base) {
|
|
42
|
-
const include = patterns.filter((pattern) => pattern[0] !== "!");
|
|
43
|
-
const exclude = patterns.filter((pattern) => pattern[0] === "!").map((pattern) => pattern.substring(1));
|
|
44
|
-
return micromatch__default.default.isMatch(path, include, {
|
|
45
|
-
ignore: exclude
|
|
46
|
-
});
|
|
47
|
-
}
|
|
48
|
-
__name(patternMatch, "patternMatch");
|
|
49
|
-
var Resolver = class {
|
|
50
|
-
static {
|
|
51
|
-
__name(this, "Resolver");
|
|
52
|
-
}
|
|
53
|
-
constructor(compilerOptions, host, sourceFiles) {
|
|
54
|
-
this.compilerOptions = compilerOptions;
|
|
55
|
-
this.host = host;
|
|
56
|
-
this.sourceFiles = sourceFiles;
|
|
57
|
-
}
|
|
58
|
-
resolve(from, importOrExportNode) {
|
|
59
|
-
const moduleSpecifier = importOrExportNode.moduleSpecifier;
|
|
60
|
-
if (!moduleSpecifier) return;
|
|
61
|
-
if (!isStringLiteral(moduleSpecifier)) return;
|
|
62
|
-
return this.resolveSourceFile(from, moduleSpecifier);
|
|
63
|
-
}
|
|
64
|
-
resolveImpl(modulePath, sourceFile) {
|
|
65
|
-
if (this.host.resolveModuleNameLiterals !== void 0) {
|
|
66
|
-
const results = this.host.resolveModuleNameLiterals(
|
|
67
|
-
[
|
|
68
|
-
modulePath
|
|
69
|
-
],
|
|
70
|
-
sourceFile.fileName,
|
|
71
|
-
/*reusedNames*/
|
|
72
|
-
void 0,
|
|
73
|
-
this.compilerOptions,
|
|
74
|
-
sourceFile,
|
|
75
|
-
void 0
|
|
76
|
-
);
|
|
77
|
-
if (results[0]) return results[0].resolvedModule;
|
|
78
|
-
return;
|
|
79
|
-
}
|
|
80
|
-
if (this.host.resolveModuleNames !== void 0) {
|
|
81
|
-
return this.host.resolveModuleNames(
|
|
82
|
-
[
|
|
83
|
-
modulePath.text
|
|
84
|
-
],
|
|
85
|
-
sourceFile.fileName,
|
|
86
|
-
/*reusedNames*/
|
|
87
|
-
void 0,
|
|
88
|
-
/*redirectedReference*/
|
|
89
|
-
void 0,
|
|
90
|
-
this.compilerOptions
|
|
91
|
-
)[0];
|
|
92
|
-
}
|
|
93
|
-
const result = resolveModuleName(modulePath.text, sourceFile.fileName, this.compilerOptions, this.host);
|
|
94
|
-
return result.resolvedModule;
|
|
95
|
-
}
|
|
96
|
-
/**
|
|
97
|
-
* Tries to resolve the .ts/d.ts file path for a given module path.
|
|
98
|
-
* Scans relative paths. Looks into package.json "types" and "exports" (with new 4.7 support)
|
|
99
|
-
*
|
|
100
|
-
* @param sourceFile the SourceFile of the file that contains the import. modulePath is relative to that.
|
|
101
|
-
* @param modulePath the x in 'from x'.
|
|
102
|
-
*/
|
|
103
|
-
resolveSourceFile(sourceFile, modulePath) {
|
|
104
|
-
const result = this.resolveImpl(modulePath, sourceFile);
|
|
105
|
-
if (!result) return;
|
|
106
|
-
if (!result.resolvedFileName.endsWith(".ts") && !result.resolvedFileName.endsWith(".tsx") && !result.resolvedFileName.endsWith(".d.ts")) {
|
|
107
|
-
return;
|
|
108
|
-
}
|
|
109
|
-
const fileName = result.resolvedFileName;
|
|
110
|
-
if (this.sourceFiles[fileName]) return this.sourceFiles[fileName];
|
|
111
|
-
const source = this.host.readFile(result.resolvedFileName);
|
|
112
|
-
if (!source) return;
|
|
113
|
-
const moduleSourceFile = this.sourceFiles[fileName] = createSourceFile(fileName, source, {
|
|
114
|
-
languageVersion: this.compilerOptions.target || ScriptTarget.ES2018,
|
|
115
|
-
// JSDocParsingMode is not available in TS < 5.3
|
|
116
|
-
jsDocParsingMode: JSDocParsingMode ? JSDocParsingMode.ParseNone : void 0
|
|
117
|
-
}, true);
|
|
118
|
-
this.sourceFiles[fileName] = moduleSourceFile;
|
|
119
|
-
ts2__default.default.bindSourceFile(moduleSourceFile, this.compilerOptions);
|
|
120
|
-
return moduleSourceFile;
|
|
121
|
-
}
|
|
122
|
-
};
|
|
123
|
-
|
|
124
|
-
// ../../node_modules/.pnpm/@deepkit+type-compiler@1.0.5_patch_hash=88e8267ac73f46799c551ae3696181dc1f272895f490f8c_ef8b874d406bec4900e1fddc1ea375be/node_modules/@deepkit/type-compiler/dist/esm/src/config.js
|
|
125
|
-
var reflectionModes = [
|
|
126
|
-
"default",
|
|
127
|
-
"explicit",
|
|
128
|
-
"never"
|
|
129
|
-
];
|
|
130
|
-
function isObject(obj) {
|
|
131
|
-
if (!obj) {
|
|
132
|
-
return false;
|
|
133
|
-
}
|
|
134
|
-
return typeof obj === "object" && !Array.isArray(obj);
|
|
135
|
-
}
|
|
136
|
-
__name(isObject, "isObject");
|
|
137
|
-
var defaultMergeStrategy = "merge";
|
|
138
|
-
var reflectionLevel = [
|
|
139
|
-
"minimal",
|
|
140
|
-
"normal",
|
|
141
|
-
"verbose"
|
|
142
|
-
];
|
|
143
|
-
function readTsConfig(parseConfigHost, path$1) {
|
|
144
|
-
const configFile = ts2__default.default.readConfigFile(path$1, (path2) => parseConfigHost.readFile(path2));
|
|
145
|
-
if (configFile.error) {
|
|
146
|
-
debug(`Failed to read tsconfig ${path$1}: ${configFile.error.messageText}`);
|
|
147
|
-
return;
|
|
148
|
-
}
|
|
149
|
-
const parsed = ts2__default.default.parseJsonConfigFileContent(configFile.config, parseConfigHost, path.dirname(path$1));
|
|
150
|
-
const ignoredErrors = [
|
|
151
|
-
18003
|
|
152
|
-
// No inputs were found in config file.
|
|
153
|
-
];
|
|
154
|
-
const softErrors = [
|
|
155
|
-
18e3
|
|
156
|
-
// Circularity detected while resolving configuration
|
|
157
|
-
];
|
|
158
|
-
const errors = parsed.errors.filter((v) => !ignoredErrors.includes(v.code));
|
|
159
|
-
if (errors.length) {
|
|
160
|
-
debug(`Failed to parse tsconfig ${path$1}: ${parsed.errors.map((v) => v.messageText).join(", ")}`);
|
|
161
|
-
}
|
|
162
|
-
const hardErrors = errors.filter((v) => !softErrors.includes(v.code));
|
|
163
|
-
if (hardErrors.length) {
|
|
164
|
-
return;
|
|
165
|
-
}
|
|
166
|
-
const json = fs.readFileSync(path$1, "utf8");
|
|
167
|
-
const tsconfig = JSON.parse(json);
|
|
168
|
-
return Object.assign(configFile.config, {
|
|
169
|
-
compilerOptions: parsed.options,
|
|
170
|
-
reflectionLevel: tsconfig.reflectionLevel ? String(tsconfig.reflectionLevel) : void 0
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
__name(readTsConfig, "readTsConfig");
|
|
174
|
-
function reflectionModeMatcher(config, filePath) {
|
|
175
|
-
if (Array.isArray(config.exclude)) {
|
|
176
|
-
if (patternMatch(filePath, config.exclude)) return "never";
|
|
177
|
-
}
|
|
178
|
-
if (Array.isArray(config.reflection)) {
|
|
179
|
-
return patternMatch(filePath, config.reflection) ? "default" : "never";
|
|
180
|
-
}
|
|
181
|
-
if (config.reflection === "default" || config.reflection === "explicit") return config.reflection;
|
|
182
|
-
return "never";
|
|
183
|
-
}
|
|
184
|
-
__name(reflectionModeMatcher, "reflectionModeMatcher");
|
|
185
|
-
function ensureStringArray(value) {
|
|
186
|
-
if (Array.isArray(value)) return value.map((v) => "" + v);
|
|
187
|
-
if ("string" === typeof value) return [
|
|
188
|
-
value
|
|
189
|
-
];
|
|
190
|
-
return [];
|
|
191
|
-
}
|
|
192
|
-
__name(ensureStringArray, "ensureStringArray");
|
|
193
|
-
function parseRawMode(mode) {
|
|
194
|
-
if ("boolean" === typeof mode) return mode ? "default" : "never";
|
|
195
|
-
if (mode === "default" || mode === "explicit") return mode;
|
|
196
|
-
return ensureStringArray(mode);
|
|
197
|
-
}
|
|
198
|
-
__name(parseRawMode, "parseRawMode");
|
|
199
|
-
function resolvePaths(baseDir, paths) {
|
|
200
|
-
if (!paths || !Array.isArray(paths)) return;
|
|
201
|
-
for (let i = 0; i < paths.length; i++) {
|
|
202
|
-
if ("string" !== typeof paths[i]) continue;
|
|
203
|
-
if (path.isAbsolute(paths[i])) continue;
|
|
204
|
-
let path$1 = paths[i];
|
|
205
|
-
let exclude = false;
|
|
206
|
-
if (path$1.startsWith("!")) {
|
|
207
|
-
exclude = true;
|
|
208
|
-
path$1 = path$1.substring(1);
|
|
209
|
-
}
|
|
210
|
-
if (path$1.startsWith("./") || path$1.includes("/")) {
|
|
211
|
-
path$1 = path.join(baseDir, path$1);
|
|
212
|
-
}
|
|
213
|
-
path$1 = path$1.replace(/\\/g, "/");
|
|
214
|
-
if (exclude) path$1 = "!" + path$1;
|
|
215
|
-
paths[i] = path$1;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
__name(resolvePaths, "resolvePaths");
|
|
219
|
-
function appendPaths(strategy = defaultMergeStrategy, parent, existing) {
|
|
220
|
-
if (strategy === "replace") {
|
|
221
|
-
return [
|
|
222
|
-
...existing || parent
|
|
223
|
-
];
|
|
224
|
-
}
|
|
225
|
-
if (!existing) return [
|
|
226
|
-
...parent
|
|
227
|
-
];
|
|
228
|
-
return [
|
|
229
|
-
...parent,
|
|
230
|
-
...existing
|
|
231
|
-
];
|
|
232
|
-
}
|
|
233
|
-
__name(appendPaths, "appendPaths");
|
|
234
|
-
function applyConfigValues(existing, parent, baseDir) {
|
|
235
|
-
const parentReflection = isObject(parent.deepkitCompilerOptions) ? parent.deepkitCompilerOptions?.reflection : parent.reflection;
|
|
236
|
-
const parentReflectionLevel = parent.deepkitCompilerOptions?.reflectionLevel || parent.reflectionLevel || parent.compilerOptions?.reflectionLevel;
|
|
237
|
-
if (isObject(parent.deepkitCompilerOptions) && "undefined" === typeof existing.mergeStrategy) {
|
|
238
|
-
existing.mergeStrategy = parent.deepkitCompilerOptions.mergeStrategy;
|
|
239
|
-
}
|
|
240
|
-
if ("undefined" !== typeof parentReflection) {
|
|
241
|
-
const next = parseRawMode(parentReflection);
|
|
242
|
-
if ("undefined" === typeof existing.reflection) {
|
|
243
|
-
existing.reflection = next;
|
|
244
|
-
} else if ("string" === typeof existing.reflection) ; else if (Array.isArray(next) && Array.isArray(existing.reflection)) {
|
|
245
|
-
existing.reflection = appendPaths(existing.mergeStrategy, next, existing.reflection);
|
|
246
|
-
} else if ("string" === typeof next && Array.isArray(existing.reflection)) ;
|
|
247
|
-
}
|
|
248
|
-
if ("undefined" !== typeof parentReflectionLevel) {
|
|
249
|
-
if ("undefined" === typeof existing.reflectionLevel) {
|
|
250
|
-
existing.reflectionLevel = parentReflectionLevel;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
if (isObject(parent.deepkitCompilerOptions)) {
|
|
254
|
-
if (`undefined` !== typeof parent.deepkitCompilerOptions.exclude) {
|
|
255
|
-
const next = ensureStringArray(parent.deepkitCompilerOptions.exclude);
|
|
256
|
-
existing.exclude = appendPaths(existing.mergeStrategy, next, existing.exclude);
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
resolvePaths(baseDir, existing.reflection);
|
|
260
|
-
resolvePaths(baseDir, existing.exclude);
|
|
261
|
-
if (parent.compilerOptions) {
|
|
262
|
-
if (Object.keys(existing.compilerOptions).length === 0) {
|
|
263
|
-
Object.assign(existing.compilerOptions, parent.compilerOptions);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
existing.extends = parent.extends;
|
|
267
|
-
}
|
|
268
|
-
__name(applyConfigValues, "applyConfigValues");
|
|
269
|
-
var defaultExcluded = [
|
|
270
|
-
"lib.dom*.d.ts",
|
|
271
|
-
"*typedarrays.d.ts",
|
|
272
|
-
"lib.webworker*.d.ts",
|
|
273
|
-
"lib.decorator*.d.ts",
|
|
274
|
-
"lib.es2015.proxy.d.ts",
|
|
275
|
-
"lib.es2020.sharedmemory.d.ts",
|
|
276
|
-
"lib.es2015.core.d.ts"
|
|
277
|
-
];
|
|
278
|
-
function getConfigResolver(cache, host, compilerOptions, sourceFile, tsConfigPath = "") {
|
|
279
|
-
let config = {
|
|
280
|
-
// We use the parameter `compilerOptions` only for compilerOptions.configFilePath.
|
|
281
|
-
// We load the compilerOptions manually since transformers don't get the full picture
|
|
282
|
-
// (path aliases are missing for example).
|
|
283
|
-
// It's important to load compilerOptions manually if there is compilerOptions.configFilePath
|
|
284
|
-
// since not all build tools provide the full compilerOptions.
|
|
285
|
-
compilerOptions: {}
|
|
286
|
-
};
|
|
287
|
-
tsConfigPath = tsConfigPath || ("string" === typeof compilerOptions.configFilePath ? compilerOptions.configFilePath : "");
|
|
288
|
-
if (tsConfigPath) {
|
|
289
|
-
if (cache[tsConfigPath]) {
|
|
290
|
-
return cache[tsConfigPath];
|
|
291
|
-
}
|
|
292
|
-
const configFile = readTsConfig(host, tsConfigPath);
|
|
293
|
-
if (configFile) applyConfigValues(config, configFile, path.dirname(tsConfigPath));
|
|
294
|
-
} else {
|
|
295
|
-
if (!tsConfigPath && sourceFile) {
|
|
296
|
-
const baseDir = path.dirname(sourceFile.fileName);
|
|
297
|
-
const configPath = ts2__default.default.findConfigFile(baseDir, (path$1) => {
|
|
298
|
-
path$1 = path.isAbsolute(path$1) ? path$1 : path.join(baseDir, path$1);
|
|
299
|
-
return host.fileExists(path$1);
|
|
300
|
-
});
|
|
301
|
-
debug2(`No tsConfigPath|compilerOptions.configFilePath provided. Manually searching for tsconfig.json in ${baseDir} returned ${configPath}`);
|
|
302
|
-
if (configPath) {
|
|
303
|
-
tsConfigPath = path.isAbsolute(configPath) ? configPath : path.join(baseDir, configPath);
|
|
304
|
-
}
|
|
305
|
-
}
|
|
306
|
-
if (tsConfigPath) {
|
|
307
|
-
if (cache[tsConfigPath]) return cache[tsConfigPath];
|
|
308
|
-
const configFile = readTsConfig(host, tsConfigPath);
|
|
309
|
-
if (configFile) applyConfigValues(config, configFile, path.dirname(tsConfigPath));
|
|
310
|
-
}
|
|
311
|
-
}
|
|
312
|
-
if (tsConfigPath) {
|
|
313
|
-
let basePath = path.dirname(tsConfigPath);
|
|
314
|
-
let currentConfig = config;
|
|
315
|
-
const seen = /* @__PURE__ */ new Set();
|
|
316
|
-
seen.add(tsConfigPath);
|
|
317
|
-
while (currentConfig.extends) {
|
|
318
|
-
const path$1 = path.join(basePath, currentConfig.extends);
|
|
319
|
-
if (seen.has(path$1)) break;
|
|
320
|
-
seen.add(path$1);
|
|
321
|
-
const nextConfig = ts2__default.default.readConfigFile(path$1, (path2) => host.readFile(path2));
|
|
322
|
-
if (!nextConfig) break;
|
|
323
|
-
basePath = path.dirname(path$1);
|
|
324
|
-
applyConfigValues(currentConfig, nextConfig.config, basePath);
|
|
325
|
-
}
|
|
326
|
-
} else {
|
|
327
|
-
throw new Error(`No tsconfig found for ${sourceFile?.fileName}, that is weird. Either provide a tsconfig or compilerOptions.configFilePath`);
|
|
328
|
-
}
|
|
329
|
-
config.exclude = config.exclude ? [
|
|
330
|
-
...defaultExcluded,
|
|
331
|
-
...config.exclude
|
|
332
|
-
] : [
|
|
333
|
-
...defaultExcluded
|
|
334
|
-
];
|
|
335
|
-
config.compilerOptions.configFilePath = tsConfigPath;
|
|
336
|
-
const resolvedConfig = {
|
|
337
|
-
path: tsConfigPath,
|
|
338
|
-
// we want to maintain options passed from tsc API (transpile, Program)
|
|
339
|
-
compilerOptions: Object.assign(config.compilerOptions, compilerOptions),
|
|
340
|
-
exclude: config.exclude,
|
|
341
|
-
reflection: config.reflection,
|
|
342
|
-
reflectionLevel: config.reflectionLevel || (config.compilerOptions?.reflectionLevel ? String(config.compilerOptions?.reflectionLevel) : void 0) || "normal",
|
|
343
|
-
mergeStrategy: config.mergeStrategy || defaultMergeStrategy
|
|
344
|
-
};
|
|
345
|
-
if (isDebug()) {
|
|
346
|
-
debug(`Found config ${resolvedConfig.path}:
|
|
347
|
-
reflection:`, resolvedConfig.reflection, `
|
|
348
|
-
exclude:`, resolvedConfig.exclude, `
|
|
349
|
-
paths:`, resolvedConfig.compilerOptions.paths);
|
|
350
|
-
}
|
|
351
|
-
const match = /* @__PURE__ */ __name((path) => {
|
|
352
|
-
const mode = reflectionModeMatcher(config, path);
|
|
353
|
-
return {
|
|
354
|
-
mode,
|
|
355
|
-
tsConfigPath,
|
|
356
|
-
level: resolvedConfig.reflectionLevel
|
|
357
|
-
};
|
|
358
|
-
}, "match");
|
|
359
|
-
return cache[tsConfigPath] = {
|
|
360
|
-
config: resolvedConfig,
|
|
361
|
-
match
|
|
362
|
-
};
|
|
363
|
-
}
|
|
364
|
-
__name(getConfigResolver, "getConfigResolver");
|
|
365
|
-
|
|
366
|
-
exports.Resolver = Resolver;
|
|
367
|
-
exports.__name = __name;
|
|
368
|
-
exports.__require = __require;
|
|
369
|
-
exports.debug = debug;
|
|
370
|
-
exports.debug2 = debug2;
|
|
371
|
-
exports.defaultExcluded = defaultExcluded;
|
|
372
|
-
exports.getConfigResolver = getConfigResolver;
|
|
373
|
-
exports.isObject = isObject;
|
|
374
|
-
exports.parseRawMode = parseRawMode;
|
|
375
|
-
exports.reflectionLevel = reflectionLevel;
|
|
376
|
-
exports.reflectionModeMatcher = reflectionModeMatcher;
|
|
377
|
-
exports.reflectionModes = reflectionModes;
|