@ttsc/graph 0.26.2 → 0.28.0
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/README.md +3 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.js +15 -3
- package/lib/index.js.map +1 -1
- package/lib/model/TtscGraphMemory.d.ts +26 -0
- package/lib/model/TtscGraphMemory.js +121 -2
- package/lib/model/TtscGraphMemory.js.map +1 -1
- package/lib/model/TtscGraphSession.d.ts +23 -0
- package/lib/model/TtscGraphSession.js +248 -96
- package/lib/model/TtscGraphSession.js.map +1 -1
- package/lib/model/TtscGraphShardStore.js +6 -1
- package/lib/model/TtscGraphShardStore.js.map +1 -1
- package/lib/model/TtscLintDaemon.d.ts +54 -0
- package/lib/model/TtscLintDaemon.js +166 -0
- package/lib/model/TtscLintDaemon.js.map +1 -0
- package/lib/model/loadGraph.d.ts +8 -1
- package/lib/model/loadGraph.js +144 -72
- package/lib/model/loadGraph.js.map +1 -1
- package/lib/model/publishedArtifacts.d.ts +142 -0
- package/lib/model/publishedArtifacts.js +403 -0
- package/lib/model/publishedArtifacts.js.map +1 -0
- package/lib/nativeExecutable.js +17 -1
- package/lib/nativeExecutable.js.map +1 -1
- package/lib/reduce.js +20 -7
- package/lib/reduce.js.map +1 -1
- package/lib/server/createServer.js +38 -2
- package/lib/server/createServer.js.map +1 -1
- package/lib/server/runDetails.d.ts +15 -0
- package/lib/server/runDetails.js +48 -0
- package/lib/server/runDetails.js.map +1 -1
- package/lib/server/runEntrypoints.js +7 -1
- package/lib/server/runEntrypoints.js.map +1 -1
- package/lib/server/runLookup.js +129 -11
- package/lib/server/runLookup.js.map +1 -1
- package/lib/structures/ITtscGraphApplication.d.ts +3 -1
- package/lib/structures/ITtscGraphDetails.d.ts +12 -0
- package/lib/structures/ITtscGraphDocTag.d.ts +44 -0
- package/lib/structures/ITtscGraphDocTag.js +3 -0
- package/lib/structures/ITtscGraphDocTag.js.map +1 -0
- package/lib/structures/ITtscGraphDump.d.ts +23 -4
- package/lib/structures/ITtscGraphLookup.d.ts +29 -0
- package/lib/structures/ITtscGraphNode.d.ts +25 -0
- package/lib/structures/TtscGraphArtifactNodeKind.d.ts +23 -0
- package/lib/structures/TtscGraphArtifactNodeKind.js +37 -0
- package/lib/structures/TtscGraphArtifactNodeKind.js.map +1 -0
- package/lib/structures/TtscGraphDumpEdgeKind.d.ts +1 -1
- package/lib/structures/TtscGraphDumpNodeKind.d.ts +10 -2
- package/lib/structures/TtscGraphEdgeKind.d.ts +8 -1
- package/lib/structures/TtscGraphNodeKind.d.ts +1 -1
- package/lib/structures/index.d.ts +2 -0
- package/lib/structures/index.js +2 -0
- package/lib/structures/index.js.map +1 -1
- package/lib/view.js +17 -1
- package/lib/view.js.map +1 -1
- package/lib/viewer/index.html +5 -13
- package/lib/viewer/viewer.js +190 -190
- package/package.json +5 -5
- package/src/index.ts +23 -6
- package/src/model/TtscGraphMemory.ts +118 -2
- package/src/model/TtscGraphSession.ts +112 -2
- package/src/model/TtscGraphShardStore.ts +6 -1
- package/src/model/TtscLintDaemon.ts +179 -0
- package/src/model/loadGraph.ts +29 -5
- package/src/model/publishedArtifacts.ts +548 -0
- package/src/nativeExecutable.ts +24 -1
- package/src/reduce.ts +20 -7
- package/src/server/runDetails.ts +52 -1
- package/src/server/runEntrypoints.ts +7 -1
- package/src/server/runLookup.ts +139 -14
- package/src/structures/ITtscGraphApplication.ts +3 -1
- package/src/structures/ITtscGraphDetails.ts +13 -0
- package/src/structures/ITtscGraphDocTag.ts +45 -0
- package/src/structures/ITtscGraphDump.ts +25 -4
- package/src/structures/ITtscGraphLookup.ts +31 -0
- package/src/structures/ITtscGraphNode.ts +27 -0
- package/src/structures/TtscGraphArtifactNodeKind.ts +35 -0
- package/src/structures/TtscGraphDumpEdgeKind.ts +1 -0
- package/src/structures/TtscGraphDumpNodeKind.ts +16 -2
- package/src/structures/TtscGraphEdgeKind.ts +8 -0
- package/src/structures/TtscGraphNodeKind.ts +7 -1
- package/src/structures/index.ts +2 -0
- package/src/view.ts +17 -1
- package/src/viewer/index.html +5 -13
- package/src/viewer/legend.ts +107 -0
- package/src/viewer/main.ts +19 -21
package/lib/model/loadGraph.js
CHANGED
|
@@ -45,6 +45,7 @@ const typia_1 = __importDefault(require("typia"));
|
|
|
45
45
|
const nativeExecutable_1 = require("../nativeExecutable");
|
|
46
46
|
const resolveGraphBinary_1 = require("../resolveGraphBinary");
|
|
47
47
|
const TtscGraphMemory_1 = require("./TtscGraphMemory");
|
|
48
|
+
const publishedArtifacts_1 = require("./publishedArtifacts");
|
|
48
49
|
/**
|
|
49
50
|
* The dump schema version this client reads.
|
|
50
51
|
*
|
|
@@ -57,8 +58,15 @@ const TtscGraphMemory_1 = require("./TtscGraphMemory");
|
|
|
57
58
|
* protocol and has to hold it to the same number: the envelope's version and
|
|
58
59
|
* the body's are independent, so a producer can speak this protocol and still
|
|
59
60
|
* send a body from another schema.
|
|
61
|
+
*
|
|
62
|
+
* `scripts/assert-ttscgraph-release-candidate.cjs` reads this declaration out
|
|
63
|
+
* of this file with a regular expression, because it runs against a packaged
|
|
64
|
+
* binary in a workflow that has no reason to have built this package first.
|
|
65
|
+
* Rewriting the declaration — adding a type annotation, splitting the line —
|
|
66
|
+
* makes that script fail loudly rather than silently, and its message names
|
|
67
|
+
* this constant; update its pattern with any such change.
|
|
60
68
|
*/
|
|
61
|
-
exports.DUMP_SCHEMA_VERSION =
|
|
69
|
+
exports.DUMP_SCHEMA_VERSION = 8;
|
|
62
70
|
/**
|
|
63
71
|
* Build the resident {@link TtscGraphMemory} for a project by running `ttscgraph
|
|
64
72
|
* dump` once and loading its JSON. This is the one-shot path for direct callers
|
|
@@ -89,7 +97,19 @@ function loadGraph(options = {}) {
|
|
|
89
97
|
let stdout;
|
|
90
98
|
let stderr;
|
|
91
99
|
try {
|
|
92
|
-
|
|
100
|
+
// Ask the project's lint install for the artifacts a citation can name
|
|
101
|
+
// before the dump runs, so the producer can resolve a documentation target
|
|
102
|
+
// into a relation rather than leaving it a token. A project with no lint
|
|
103
|
+
// install, or none that publishes, contributes no file and no claim.
|
|
104
|
+
const artifacts = (0, publishedArtifacts_1.publishArtifacts)({ cwd, tsconfig });
|
|
105
|
+
result = (0, node_child_process_1.spawnSync)(binary, [
|
|
106
|
+
"dump",
|
|
107
|
+
"--cwd",
|
|
108
|
+
cwd,
|
|
109
|
+
"--tsconfig",
|
|
110
|
+
tsconfig,
|
|
111
|
+
...(artifacts.file === null ? [] : ["--artifacts", artifacts.file]),
|
|
112
|
+
], {
|
|
93
113
|
stdio: ["ignore", capture.stdoutFd, capture.stderrFd],
|
|
94
114
|
windowsHide: true,
|
|
95
115
|
});
|
|
@@ -155,10 +175,14 @@ function parseDump(json) {
|
|
|
155
175
|
const _ip10 = input => undefined === input["enumMembers"] || Array.isArray(input["enumMembers"]) && input["enumMembers"].every(elem => "object" === typeof elem && null !== elem && _io9(elem));
|
|
156
176
|
const _ip11 = input => undefined === input["objectMembers"] || Array.isArray(input["objectMembers"]) && input["objectMembers"].every(elem => "object" === typeof elem && null !== elem && _io10(elem));
|
|
157
177
|
const _ip12 = input => undefined === input["decorators"] || Array.isArray(input["decorators"]) && input["decorators"].every(elem => "object" === typeof elem && null !== elem && _io11(elem));
|
|
158
|
-
const _ip13 = input => undefined === input["
|
|
159
|
-
const _ip14 = input =>
|
|
160
|
-
const _ip15 = input =>
|
|
161
|
-
const
|
|
178
|
+
const _ip13 = input => undefined === input["docTags"] || Array.isArray(input["docTags"]) && input["docTags"].every(elem => "object" === typeof elem && null !== elem && _io13(elem));
|
|
179
|
+
const _ip14 = input => undefined === input["signature"] || "string" === typeof input["signature"];
|
|
180
|
+
const _ip15 = input => true === _iv1.has(input["kind"]);
|
|
181
|
+
const _iv1 = new Set(["class", "enum", "function", "interface", "markdown_document", "markdown_section", "method", "module", "prisma_column", "prisma_model", "prisma_relation", "swagger_operation", "type", "variable"]);
|
|
182
|
+
const _ip16 = input => undefined === input["parent"] || "string" === typeof input["parent"];
|
|
183
|
+
const _ip17 = input => undefined === input["evidence"] || "object" === typeof input["evidence"] && null !== input["evidence"] && _io14(input["evidence"]);
|
|
184
|
+
const _ip18 = input => undefined === input["implementation"] || "object" === typeof input["implementation"] && null !== input["implementation"] && _io14(input["implementation"]);
|
|
185
|
+
const _iv2 = new Set(["accesses", "calls", "doc_ref", "exports", "extends", "implements", "instantiates", "overrides", "renders", "type_ref"]);
|
|
162
186
|
const _ap0 = (input, _path, _exceptionable = true) => "string" === typeof input["file"] || _assertGuard_1._assertGuard(_exceptionable, {
|
|
163
187
|
method: "typia.assert",
|
|
164
188
|
path: _path + ".file",
|
|
@@ -212,9 +236,9 @@ function parseDump(json) {
|
|
|
212
236
|
path: _path + ".modifiers",
|
|
213
237
|
expected: "(Array<TtscGraphNodeModifier> | undefined)",
|
|
214
238
|
value: input["modifiers"]
|
|
215
|
-
}, _errorFactory)) && input["modifiers"].every((elem,
|
|
239
|
+
}, _errorFactory)) && input["modifiers"].every((elem, _index22) => true === _av0.has(elem) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
216
240
|
method: "typia.assert",
|
|
217
|
-
path: _path + ".modifiers[" +
|
|
241
|
+
path: _path + ".modifiers[" + _index22 + "]",
|
|
218
242
|
expected: _ae0,
|
|
219
243
|
value: elem
|
|
220
244
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -230,9 +254,9 @@ function parseDump(json) {
|
|
|
230
254
|
path: _path + ".literals",
|
|
231
255
|
expected: "(Array<string> | undefined)",
|
|
232
256
|
value: input["literals"]
|
|
233
|
-
}, _errorFactory)) && input["literals"].every((elem,
|
|
257
|
+
}, _errorFactory)) && input["literals"].every((elem, _index23) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
234
258
|
method: "typia.assert",
|
|
235
|
-
path: _path + ".literals[" +
|
|
259
|
+
path: _path + ".literals[" + _index23 + "]",
|
|
236
260
|
expected: "string",
|
|
237
261
|
value: elem
|
|
238
262
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -246,14 +270,14 @@ function parseDump(json) {
|
|
|
246
270
|
path: _path + ".enumMembers",
|
|
247
271
|
expected: "(Array<ITtscGraphNode.IEnumMember> | undefined)",
|
|
248
272
|
value: input["enumMembers"]
|
|
249
|
-
}, _errorFactory)) && input["enumMembers"].every((elem,
|
|
273
|
+
}, _errorFactory)) && input["enumMembers"].every((elem, _index24) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
250
274
|
method: "typia.assert",
|
|
251
|
-
path: _path + ".enumMembers[" +
|
|
275
|
+
path: _path + ".enumMembers[" + _index24 + "]",
|
|
252
276
|
expected: "ITtscGraphNode.IEnumMember",
|
|
253
277
|
value: elem
|
|
254
|
-
}, _errorFactory)) && _ao9(elem, _path + ".enumMembers[" +
|
|
278
|
+
}, _errorFactory)) && _ao9(elem, _path + ".enumMembers[" + _index24 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
255
279
|
method: "typia.assert",
|
|
256
|
-
path: _path + ".enumMembers[" +
|
|
280
|
+
path: _path + ".enumMembers[" + _index24 + "]",
|
|
257
281
|
expected: "ITtscGraphNode.IEnumMember",
|
|
258
282
|
value: elem
|
|
259
283
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -267,14 +291,14 @@ function parseDump(json) {
|
|
|
267
291
|
path: _path + ".objectMembers",
|
|
268
292
|
expected: "(Array<ITtscGraphNode.IObjectMember> | undefined)",
|
|
269
293
|
value: input["objectMembers"]
|
|
270
|
-
}, _errorFactory)) && input["objectMembers"].every((elem,
|
|
294
|
+
}, _errorFactory)) && input["objectMembers"].every((elem, _index25) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
271
295
|
method: "typia.assert",
|
|
272
|
-
path: _path + ".objectMembers[" +
|
|
296
|
+
path: _path + ".objectMembers[" + _index25 + "]",
|
|
273
297
|
expected: "ITtscGraphNode.IObjectMember",
|
|
274
298
|
value: elem
|
|
275
|
-
}, _errorFactory)) && _ao10(elem, _path + ".objectMembers[" +
|
|
299
|
+
}, _errorFactory)) && _ao10(elem, _path + ".objectMembers[" + _index25 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
276
300
|
method: "typia.assert",
|
|
277
|
-
path: _path + ".objectMembers[" +
|
|
301
|
+
path: _path + ".objectMembers[" + _index25 + "]",
|
|
278
302
|
expected: "ITtscGraphNode.IObjectMember",
|
|
279
303
|
value: elem
|
|
280
304
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -288,14 +312,14 @@ function parseDump(json) {
|
|
|
288
312
|
path: _path + ".decorators",
|
|
289
313
|
expected: "(Array<ITtscGraphDecorator> | undefined)",
|
|
290
314
|
value: input["decorators"]
|
|
291
|
-
}, _errorFactory)) && input["decorators"].every((elem,
|
|
315
|
+
}, _errorFactory)) && input["decorators"].every((elem, _index26) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
292
316
|
method: "typia.assert",
|
|
293
|
-
path: _path + ".decorators[" +
|
|
317
|
+
path: _path + ".decorators[" + _index26 + "]",
|
|
294
318
|
expected: "ITtscGraphDecorator",
|
|
295
319
|
value: elem
|
|
296
|
-
}, _errorFactory)) && _ao11(elem, _path + ".decorators[" +
|
|
320
|
+
}, _errorFactory)) && _ao11(elem, _path + ".decorators[" + _index26 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
297
321
|
method: "typia.assert",
|
|
298
|
-
path: _path + ".decorators[" +
|
|
322
|
+
path: _path + ".decorators[" + _index26 + "]",
|
|
299
323
|
expected: "ITtscGraphDecorator",
|
|
300
324
|
value: elem
|
|
301
325
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -304,40 +328,71 @@ function parseDump(json) {
|
|
|
304
328
|
expected: "(Array<ITtscGraphDecorator> | undefined)",
|
|
305
329
|
value: input["decorators"]
|
|
306
330
|
}, _errorFactory);
|
|
307
|
-
const _ap13 = (input, _path, _exceptionable = true) => undefined === input["
|
|
331
|
+
const _ap13 = (input, _path, _exceptionable = true) => undefined === input["docTags"] || (Array.isArray(input["docTags"]) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
332
|
+
method: "typia.assert",
|
|
333
|
+
path: _path + ".docTags",
|
|
334
|
+
expected: "(Array<ITtscGraphDocTag> | undefined)",
|
|
335
|
+
value: input["docTags"]
|
|
336
|
+
}, _errorFactory)) && input["docTags"].every((elem, _index27) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
337
|
+
method: "typia.assert",
|
|
338
|
+
path: _path + ".docTags[" + _index27 + "]",
|
|
339
|
+
expected: "ITtscGraphDocTag",
|
|
340
|
+
value: elem
|
|
341
|
+
}, _errorFactory)) && _ao13(elem, _path + ".docTags[" + _index27 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
342
|
+
method: "typia.assert",
|
|
343
|
+
path: _path + ".docTags[" + _index27 + "]",
|
|
344
|
+
expected: "ITtscGraphDocTag",
|
|
345
|
+
value: elem
|
|
346
|
+
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
347
|
+
method: "typia.assert",
|
|
348
|
+
path: _path + ".docTags",
|
|
349
|
+
expected: "(Array<ITtscGraphDocTag> | undefined)",
|
|
350
|
+
value: input["docTags"]
|
|
351
|
+
}, _errorFactory);
|
|
352
|
+
const _ap14 = (input, _path, _exceptionable = true) => undefined === input["signature"] || "string" === typeof input["signature"] || _assertGuard_1._assertGuard(_exceptionable, {
|
|
308
353
|
method: "typia.assert",
|
|
309
354
|
path: _path + ".signature",
|
|
310
355
|
expected: "(string | undefined)",
|
|
311
356
|
value: input["signature"]
|
|
312
357
|
}, _errorFactory);
|
|
313
|
-
const
|
|
358
|
+
const _ap15 = (input, _path, _exceptionable = true) => true === _av1.has(input["kind"]) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
314
359
|
method: "typia.assert",
|
|
315
360
|
path: _path + ".kind",
|
|
316
|
-
expected:
|
|
361
|
+
expected: _ae1,
|
|
317
362
|
value: input["kind"]
|
|
318
363
|
}, _errorFactory);
|
|
319
|
-
const
|
|
364
|
+
const _av1 = new Set(["class", "enum", "function", "interface", "markdown_document", "markdown_section", "method", "module", "prisma_column", "prisma_model", "prisma_relation", "swagger_operation", "type", "variable"]);
|
|
365
|
+
const _ae1 = "(\"class\" | \"enum\" | \"function\" | \"interface\" | \"markdown_document\" | \"markdown_section\" | \"method\" | \"module\" | \"prisma_column\" | \"prisma_model\" | \"prisma_relation\" | \"swagger_operation\" | \"type\" | \"variable\")";
|
|
366
|
+
const _ap16 = (input, _path, _exceptionable = true) => undefined === input["parent"] || "string" === typeof input["parent"] || _assertGuard_1._assertGuard(_exceptionable, {
|
|
367
|
+
method: "typia.assert",
|
|
368
|
+
path: _path + ".parent",
|
|
369
|
+
expected: "(string | undefined)",
|
|
370
|
+
value: input["parent"]
|
|
371
|
+
}, _errorFactory);
|
|
372
|
+
const _ap17 = (input, _path, _exceptionable = true) => undefined === input["evidence"] || ("object" === typeof input["evidence"] && null !== input["evidence"] || _assertGuard_1._assertGuard(_exceptionable, {
|
|
320
373
|
method: "typia.assert",
|
|
321
374
|
path: _path + ".evidence",
|
|
322
375
|
expected: "(ITtscGraphSpan | undefined)",
|
|
323
376
|
value: input["evidence"]
|
|
324
|
-
}, _errorFactory)) &&
|
|
377
|
+
}, _errorFactory)) && _ao14(input["evidence"], _path + ".evidence", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
325
378
|
method: "typia.assert",
|
|
326
379
|
path: _path + ".evidence",
|
|
327
380
|
expected: "(ITtscGraphSpan | undefined)",
|
|
328
381
|
value: input["evidence"]
|
|
329
382
|
}, _errorFactory);
|
|
330
|
-
const
|
|
383
|
+
const _ap18 = (input, _path, _exceptionable = true) => undefined === input["implementation"] || ("object" === typeof input["implementation"] && null !== input["implementation"] || _assertGuard_1._assertGuard(_exceptionable, {
|
|
331
384
|
method: "typia.assert",
|
|
332
385
|
path: _path + ".implementation",
|
|
333
386
|
expected: "(ITtscGraphSpan | undefined)",
|
|
334
387
|
value: input["implementation"]
|
|
335
|
-
}, _errorFactory)) &&
|
|
388
|
+
}, _errorFactory)) && _ao14(input["implementation"], _path + ".implementation", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
336
389
|
method: "typia.assert",
|
|
337
390
|
path: _path + ".implementation",
|
|
338
391
|
expected: "(ITtscGraphSpan | undefined)",
|
|
339
392
|
value: input["implementation"]
|
|
340
393
|
}, _errorFactory);
|
|
394
|
+
const _av2 = new Set(["accesses", "calls", "doc_ref", "exports", "extends", "implements", "instantiates", "overrides", "renders", "type_ref"]);
|
|
395
|
+
const _ae2 = "(\"accesses\" | \"calls\" | \"doc_ref\" | \"exports\" | \"extends\" | \"implements\" | \"instantiates\" | \"overrides\" | \"renders\" | \"type_ref\")";
|
|
341
396
|
const _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.project || _assertGuard_1._assertGuard(_exceptionable, {
|
|
342
397
|
method: "typia.assert",
|
|
343
398
|
path: _path + ".project",
|
|
@@ -363,14 +418,14 @@ function parseDump(json) {
|
|
|
363
418
|
path: _path + ".diagnostics",
|
|
364
419
|
expected: "Array<ITtscGraphDump.IDiagnostic>",
|
|
365
420
|
value: input.diagnostics
|
|
366
|
-
}, _errorFactory)) && input.diagnostics.every((elem,
|
|
421
|
+
}, _errorFactory)) && input.diagnostics.every((elem, _index15) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
367
422
|
method: "typia.assert",
|
|
368
|
-
path: _path + ".diagnostics[" +
|
|
423
|
+
path: _path + ".diagnostics[" + _index15 + "]",
|
|
369
424
|
expected: "ITtscGraphDump.IDiagnostic",
|
|
370
425
|
value: elem
|
|
371
|
-
}, _errorFactory)) && _ao7(elem, _path + ".diagnostics[" +
|
|
426
|
+
}, _errorFactory)) && _ao7(elem, _path + ".diagnostics[" + _index15 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
372
427
|
method: "typia.assert",
|
|
373
|
-
path: _path + ".diagnostics[" +
|
|
428
|
+
path: _path + ".diagnostics[" + _index15 + "]",
|
|
374
429
|
expected: "ITtscGraphDump.IDiagnostic",
|
|
375
430
|
value: elem
|
|
376
431
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -383,14 +438,14 @@ function parseDump(json) {
|
|
|
383
438
|
path: _path + ".nodes",
|
|
384
439
|
expected: "Array<ITtscGraphDump.INode>",
|
|
385
440
|
value: input.nodes
|
|
386
|
-
}, _errorFactory)) && input.nodes.every((elem,
|
|
441
|
+
}, _errorFactory)) && input.nodes.every((elem, _index16) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
387
442
|
method: "typia.assert",
|
|
388
|
-
path: _path + ".nodes[" +
|
|
443
|
+
path: _path + ".nodes[" + _index16 + "]",
|
|
389
444
|
expected: "ITtscGraphDump.INode",
|
|
390
445
|
value: elem
|
|
391
|
-
}, _errorFactory)) && _ao8(elem, _path + ".nodes[" +
|
|
446
|
+
}, _errorFactory)) && _ao8(elem, _path + ".nodes[" + _index16 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
392
447
|
method: "typia.assert",
|
|
393
|
-
path: _path + ".nodes[" +
|
|
448
|
+
path: _path + ".nodes[" + _index16 + "]",
|
|
394
449
|
expected: "ITtscGraphDump.INode",
|
|
395
450
|
value: elem
|
|
396
451
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -403,14 +458,14 @@ function parseDump(json) {
|
|
|
403
458
|
path: _path + ".edges",
|
|
404
459
|
expected: "Array<ITtscGraphDump.IEdge>",
|
|
405
460
|
value: input.edges
|
|
406
|
-
}, _errorFactory)) && input.edges.every((elem,
|
|
461
|
+
}, _errorFactory)) && input.edges.every((elem, _index17) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
407
462
|
method: "typia.assert",
|
|
408
|
-
path: _path + ".edges[" +
|
|
463
|
+
path: _path + ".edges[" + _index17 + "]",
|
|
409
464
|
expected: "ITtscGraphDump.IEdge",
|
|
410
465
|
value: elem
|
|
411
|
-
}, _errorFactory)) &&
|
|
466
|
+
}, _errorFactory)) && _ao15(elem, _path + ".edges[" + _index17 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
412
467
|
method: "typia.assert",
|
|
413
|
-
path: _path + ".edges[" +
|
|
468
|
+
path: _path + ".edges[" + _index17 + "]",
|
|
414
469
|
expected: "ITtscGraphDump.IEdge",
|
|
415
470
|
value: elem
|
|
416
471
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -429,9 +484,9 @@ function parseDump(json) {
|
|
|
429
484
|
path: _path + ".capabilities",
|
|
430
485
|
expected: "Array<string>",
|
|
431
486
|
value: input.capabilities
|
|
432
|
-
}, _errorFactory)) && input.capabilities.every((elem,
|
|
487
|
+
}, _errorFactory)) && input.capabilities.every((elem, _index18) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
433
488
|
method: "typia.assert",
|
|
434
|
-
path: _path + ".capabilities[" +
|
|
489
|
+
path: _path + ".capabilities[" + _index18 + "]",
|
|
435
490
|
expected: "string",
|
|
436
491
|
value: elem
|
|
437
492
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -449,6 +504,16 @@ function parseDump(json) {
|
|
|
449
504
|
path: _path + ".producer",
|
|
450
505
|
expected: "ITtscGraphDump.IProducer",
|
|
451
506
|
value: input.producer
|
|
507
|
+
}, _errorFactory)) && (undefined === input.artifactProducer || ("object" === typeof input.artifactProducer && null !== input.artifactProducer || _assertGuard_1._assertGuard(_exceptionable, {
|
|
508
|
+
method: "typia.assert",
|
|
509
|
+
path: _path + ".artifactProducer",
|
|
510
|
+
expected: "(ITtscGraphDump.IProducer | undefined)",
|
|
511
|
+
value: input.artifactProducer
|
|
512
|
+
}, _errorFactory)) && _ao2(input.artifactProducer, _path + ".artifactProducer", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
513
|
+
method: "typia.assert",
|
|
514
|
+
path: _path + ".artifactProducer",
|
|
515
|
+
expected: "(ITtscGraphDump.IProducer | undefined)",
|
|
516
|
+
value: input.artifactProducer
|
|
452
517
|
}, _errorFactory)) && (("object" === typeof input.universe && null !== input.universe || _assertGuard_1._assertGuard(_exceptionable, {
|
|
453
518
|
method: "typia.assert",
|
|
454
519
|
path: _path + ".universe",
|
|
@@ -464,14 +529,14 @@ function parseDump(json) {
|
|
|
464
529
|
path: _path + ".sources",
|
|
465
530
|
expected: "Array<ITtscGraphDump.ISourceDigest>",
|
|
466
531
|
value: input.sources
|
|
467
|
-
}, _errorFactory)) && input.sources.every((elem,
|
|
532
|
+
}, _errorFactory)) && input.sources.every((elem, _index19) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
468
533
|
method: "typia.assert",
|
|
469
|
-
path: _path + ".sources[" +
|
|
534
|
+
path: _path + ".sources[" + _index19 + "]",
|
|
470
535
|
expected: "ITtscGraphDump.ISourceDigest",
|
|
471
536
|
value: elem
|
|
472
|
-
}, _errorFactory)) && _ao6(elem, _path + ".sources[" +
|
|
537
|
+
}, _errorFactory)) && _ao6(elem, _path + ".sources[" + _index19 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
473
538
|
method: "typia.assert",
|
|
474
|
-
path: _path + ".sources[" +
|
|
539
|
+
path: _path + ".sources[" + _index19 + "]",
|
|
475
540
|
expected: "ITtscGraphDump.ISourceDigest",
|
|
476
541
|
value: elem
|
|
477
542
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -490,20 +555,20 @@ function parseDump(json) {
|
|
|
490
555
|
path: _path + ".line",
|
|
491
556
|
expected: "(number | undefined)",
|
|
492
557
|
value: input.line
|
|
493
|
-
}, _errorFactory)) &&
|
|
558
|
+
}, _errorFactory)) && _ap14(input, _path, true && _exceptionable);
|
|
494
559
|
const _ao11 = (input, _path, _exceptionable = true) => _ap2(input, _path, true && _exceptionable) && ((Array.isArray(input.arguments) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
495
560
|
method: "typia.assert",
|
|
496
561
|
path: _path + ".arguments",
|
|
497
562
|
expected: "Array<ITtscGraphDecorator.IArgument>",
|
|
498
563
|
value: input.arguments
|
|
499
|
-
}, _errorFactory)) && input.arguments.every((elem,
|
|
564
|
+
}, _errorFactory)) && input.arguments.every((elem, _index28) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
500
565
|
method: "typia.assert",
|
|
501
|
-
path: _path + ".arguments[" +
|
|
566
|
+
path: _path + ".arguments[" + _index28 + "]",
|
|
502
567
|
expected: "ITtscGraphDecorator.IArgument",
|
|
503
568
|
value: elem
|
|
504
|
-
}, _errorFactory)) && _ao12(elem, _path + ".arguments[" +
|
|
569
|
+
}, _errorFactory)) && _ao12(elem, _path + ".arguments[" + _index28 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
505
570
|
method: "typia.assert",
|
|
506
|
-
path: _path + ".arguments[" +
|
|
571
|
+
path: _path + ".arguments[" + _index28 + "]",
|
|
507
572
|
expected: "ITtscGraphDecorator.IArgument",
|
|
508
573
|
value: elem
|
|
509
574
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -518,7 +583,13 @@ function parseDump(json) {
|
|
|
518
583
|
expected: "(boolean | number | string | undefined)",
|
|
519
584
|
value: input.literal
|
|
520
585
|
}, _errorFactory);
|
|
521
|
-
const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.
|
|
586
|
+
const _ao13 = (input, _path, _exceptionable = true) => _ap2(input, _path, true && _exceptionable) && (undefined === input.text || "string" === typeof input.text || _assertGuard_1._assertGuard(_exceptionable, {
|
|
587
|
+
method: "typia.assert",
|
|
588
|
+
path: _path + ".text",
|
|
589
|
+
expected: "(string | undefined)",
|
|
590
|
+
value: input.text
|
|
591
|
+
}, _errorFactory));
|
|
592
|
+
const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.file || "string" === typeof input.file || _assertGuard_1._assertGuard(_exceptionable, {
|
|
522
593
|
method: "typia.assert",
|
|
523
594
|
path: _path + ".file",
|
|
524
595
|
expected: "(string | undefined)",
|
|
@@ -544,7 +615,7 @@ function parseDump(json) {
|
|
|
544
615
|
expected: "(number | undefined)",
|
|
545
616
|
value: input.endCol
|
|
546
617
|
}, _errorFactory));
|
|
547
|
-
const
|
|
618
|
+
const _ao15 = (input, _path, _exceptionable = true) => ("string" === typeof input.from || _assertGuard_1._assertGuard(_exceptionable, {
|
|
548
619
|
method: "typia.assert",
|
|
549
620
|
path: _path + ".from",
|
|
550
621
|
expected: "string",
|
|
@@ -554,12 +625,12 @@ function parseDump(json) {
|
|
|
554
625
|
path: _path + ".to",
|
|
555
626
|
expected: "string",
|
|
556
627
|
value: input.to
|
|
557
|
-
}, _errorFactory)) && (
|
|
628
|
+
}, _errorFactory)) && (true === _av2.has(input.kind) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
558
629
|
method: "typia.assert",
|
|
559
630
|
path: _path + ".kind",
|
|
560
|
-
expected:
|
|
631
|
+
expected: _ae2,
|
|
561
632
|
value: input.kind
|
|
562
|
-
}, _errorFactory)) &&
|
|
633
|
+
}, _errorFactory)) && _ap17(input, _path, true && _exceptionable);
|
|
563
634
|
const _ao2 = (input, _path, _exceptionable = true) => ("string" === typeof input.tool || _assertGuard_1._assertGuard(_exceptionable, {
|
|
564
635
|
method: "typia.assert",
|
|
565
636
|
path: _path + ".tool",
|
|
@@ -581,14 +652,14 @@ function parseDump(json) {
|
|
|
581
652
|
path: _path + ".configs",
|
|
582
653
|
expected: "Array<ITtscGraphDump.IFileDigest>",
|
|
583
654
|
value: input.configs
|
|
584
|
-
}, _errorFactory)) && input.configs.every((elem,
|
|
655
|
+
}, _errorFactory)) && input.configs.every((elem, _index20) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
585
656
|
method: "typia.assert",
|
|
586
|
-
path: _path + ".configs[" +
|
|
657
|
+
path: _path + ".configs[" + _index20 + "]",
|
|
587
658
|
expected: "ITtscGraphDump.IFileDigest",
|
|
588
659
|
value: elem
|
|
589
|
-
}, _errorFactory)) && _ao4(elem, _path + ".configs[" +
|
|
660
|
+
}, _errorFactory)) && _ao4(elem, _path + ".configs[" + _index20 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
590
661
|
method: "typia.assert",
|
|
591
|
-
path: _path + ".configs[" +
|
|
662
|
+
path: _path + ".configs[" + _index20 + "]",
|
|
592
663
|
expected: "ITtscGraphDump.IFileDigest",
|
|
593
664
|
value: elem
|
|
594
665
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -601,14 +672,14 @@ function parseDump(json) {
|
|
|
601
672
|
path: _path + ".roots",
|
|
602
673
|
expected: "Array<ITtscGraphDump.IRootFile>",
|
|
603
674
|
value: input.roots
|
|
604
|
-
}, _errorFactory)) && input.roots.every((elem,
|
|
675
|
+
}, _errorFactory)) && input.roots.every((elem, _index21) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
|
|
605
676
|
method: "typia.assert",
|
|
606
|
-
path: _path + ".roots[" +
|
|
677
|
+
path: _path + ".roots[" + _index21 + "]",
|
|
607
678
|
expected: "ITtscGraphDump.IRootFile",
|
|
608
679
|
value: elem
|
|
609
|
-
}, _errorFactory)) && _ao5(elem, _path + ".roots[" +
|
|
680
|
+
}, _errorFactory)) && _ao5(elem, _path + ".roots[" + _index21 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
610
681
|
method: "typia.assert",
|
|
611
|
-
path: _path + ".roots[" +
|
|
682
|
+
path: _path + ".roots[" + _index21 + "]",
|
|
612
683
|
expected: "ITtscGraphDump.IRootFile",
|
|
613
684
|
value: elem
|
|
614
685
|
}, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
|
|
@@ -666,27 +737,28 @@ function parseDump(json) {
|
|
|
666
737
|
expected: "string",
|
|
667
738
|
value: input.message
|
|
668
739
|
}, _errorFactory));
|
|
669
|
-
const _ao8 = (input, _path, _exceptionable = true) => _ap1(input, _path, true && _exceptionable) && _ap2(input, _path, true && _exceptionable) && _ap3(input, _path, true && _exceptionable) && _ap0(input, _path, true && _exceptionable) && _ap4(input, _path, true && _exceptionable) && _ap5(input, _path, true && _exceptionable) && _ap6(input, _path, true && _exceptionable) && _ap7(input, _path, true && _exceptionable) && _ap8(input, _path, true && _exceptionable) && _ap9(input, _path, true && _exceptionable) && _ap10(input, _path, true && _exceptionable) && _ap11(input, _path, true && _exceptionable) && _ap12(input, _path, true && _exceptionable) && _ap13(input, _path, true && _exceptionable) && _ap14(input, _path, true && _exceptionable) && _ap15(input, _path, true && _exceptionable) && _ap16(input, _path, true && _exceptionable);
|
|
740
|
+
const _ao8 = (input, _path, _exceptionable = true) => _ap1(input, _path, true && _exceptionable) && _ap2(input, _path, true && _exceptionable) && _ap3(input, _path, true && _exceptionable) && _ap0(input, _path, true && _exceptionable) && _ap4(input, _path, true && _exceptionable) && _ap5(input, _path, true && _exceptionable) && _ap6(input, _path, true && _exceptionable) && _ap7(input, _path, true && _exceptionable) && _ap8(input, _path, true && _exceptionable) && _ap9(input, _path, true && _exceptionable) && _ap10(input, _path, true && _exceptionable) && _ap11(input, _path, true && _exceptionable) && _ap12(input, _path, true && _exceptionable) && _ap13(input, _path, true && _exceptionable) && _ap14(input, _path, true && _exceptionable) && _ap15(input, _path, true && _exceptionable) && _ap16(input, _path, true && _exceptionable) && _ap17(input, _path, true && _exceptionable) && _ap18(input, _path, true && _exceptionable);
|
|
670
741
|
const _ao9 = (input, _path, _exceptionable = true) => _ap2(input, _path, true && _exceptionable) && (undefined === input.value || "string" === typeof input.value || _assertGuard_1._assertGuard(_exceptionable, {
|
|
671
742
|
method: "typia.assert",
|
|
672
743
|
path: _path + ".value",
|
|
673
744
|
expected: "(string | undefined)",
|
|
674
745
|
value: input.value
|
|
675
746
|
}, _errorFactory));
|
|
676
|
-
const _io0 = input => "string" === typeof input.project && "string" === typeof input.tsconfig && ("object" === typeof input.provenance && null !== input.provenance && _io1(input.provenance)) && (Array.isArray(input.diagnostics) && input.diagnostics.every(elem => "object" === typeof elem && null !== elem && _io7(elem))) && (Array.isArray(input.nodes) && input.nodes.every(elem => "object" === typeof elem && null !== elem && _io8(elem))) && (Array.isArray(input.edges) && input.edges.every(elem => "object" === typeof elem && null !== elem &&
|
|
677
|
-
const _io1 = input => "number" === typeof input.schemaVersion && (Array.isArray(input.capabilities) && input.capabilities.every(elem => "string" === typeof elem)) && ("object" === typeof input.producer && null !== input.producer && _io2(input.producer)) && ("object" === typeof input.universe && null !== input.universe && _io3(input.universe)) && (Array.isArray(input.sources) && input.sources.every(elem => "object" === typeof elem && null !== elem && _io6(elem)));
|
|
678
|
-
const _io10 = input => _ip2(input) && ("method" === input.kind || "property" === input.kind) && (undefined === input.line || "number" === typeof input.line) &&
|
|
747
|
+
const _io0 = input => "string" === typeof input.project && "string" === typeof input.tsconfig && ("object" === typeof input.provenance && null !== input.provenance && _io1(input.provenance)) && (Array.isArray(input.diagnostics) && input.diagnostics.every(elem => "object" === typeof elem && null !== elem && _io7(elem))) && (Array.isArray(input.nodes) && input.nodes.every(elem => "object" === typeof elem && null !== elem && _io8(elem))) && (Array.isArray(input.edges) && input.edges.every(elem => "object" === typeof elem && null !== elem && _io15(elem)));
|
|
748
|
+
const _io1 = input => "number" === typeof input.schemaVersion && (Array.isArray(input.capabilities) && input.capabilities.every(elem => "string" === typeof elem)) && ("object" === typeof input.producer && null !== input.producer && _io2(input.producer)) && (undefined === input.artifactProducer || "object" === typeof input.artifactProducer && null !== input.artifactProducer && _io2(input.artifactProducer)) && ("object" === typeof input.universe && null !== input.universe && _io3(input.universe)) && (Array.isArray(input.sources) && input.sources.every(elem => "object" === typeof elem && null !== elem && _io6(elem)));
|
|
749
|
+
const _io10 = input => _ip2(input) && ("method" === input.kind || "property" === input.kind) && (undefined === input.line || "number" === typeof input.line) && _ip14(input);
|
|
679
750
|
const _io11 = input => _ip2(input) && (Array.isArray(input.arguments) && input.arguments.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io12(elem)));
|
|
680
751
|
const _io12 = input => undefined === input.literal || "string" === typeof input.literal || "number" === typeof input.literal || "boolean" === typeof input.literal;
|
|
681
|
-
const _io13 = input => (
|
|
682
|
-
const _io14 = input =>
|
|
752
|
+
const _io13 = input => _ip2(input) && (undefined === input.text || "string" === typeof input.text);
|
|
753
|
+
const _io14 = input => (undefined === input.file || "string" === typeof input.file) && "number" === typeof input.startLine && (undefined === input.startCol || "number" === typeof input.startCol) && (undefined === input.endLine || "number" === typeof input.endLine) && (undefined === input.endCol || "number" === typeof input.endCol);
|
|
754
|
+
const _io15 = input => "string" === typeof input.from && "string" === typeof input.to && true === _iv2.has(input.kind) && _ip17(input);
|
|
683
755
|
const _io2 = input => "string" === typeof input.tool && "string" === typeof input.version && "string" === typeof input.typescript;
|
|
684
756
|
const _io3 = input => Array.isArray(input.configs) && input.configs.every(elem => "object" === typeof elem && null !== elem && _io4(elem)) && (Array.isArray(input.roots) && input.roots.every(elem => "object" === typeof elem && null !== elem && _io5(elem)));
|
|
685
757
|
const _io4 = input => _ip0(input) && "string" === typeof input.digest;
|
|
686
758
|
const _io5 = input => "string" === typeof input.config && _ip0(input);
|
|
687
759
|
const _io6 = input => _ip0(input) && "string" === typeof input.checkerDigest && "string" === typeof input.diskDigest;
|
|
688
760
|
const _io7 = input => _ip0(input) && "number" === typeof input.line && "number" === typeof input.column && "number" === typeof input.code && ("error" === input.category || "warning" === input.category) && "string" === typeof input.message;
|
|
689
|
-
const _io8 = input => _ip1(input) && _ip2(input) && _ip3(input) && _ip0(input) && _ip4(input) && _ip5(input) && _ip6(input) && _ip7(input) && _ip8(input) && _ip9(input) && _ip10(input) && _ip11(input) && _ip12(input) && _ip13(input) && _ip14(input) && _ip15(input) && _ip16(input);
|
|
761
|
+
const _io8 = input => _ip1(input) && _ip2(input) && _ip3(input) && _ip0(input) && _ip4(input) && _ip5(input) && _ip6(input) && _ip7(input) && _ip8(input) && _ip9(input) && _ip10(input) && _ip11(input) && _ip12(input) && _ip13(input) && _ip14(input) && _ip15(input) && _ip16(input) && _ip17(input) && _ip18(input);
|
|
690
762
|
const _io9 = input => _ip2(input) && (undefined === input.value || "string" === typeof input.value);
|
|
691
763
|
const __is = input => "object" === typeof input && null !== input && _io0(input);
|
|
692
764
|
let _errorFactory;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loadGraph.js","sourceRoot":"","sources":["../../src/model/loadGraph.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2DAA+C;AAC/C,kDAA0B;AAE1B,0DAA6E;AAC7E,8DAA2D;AAE3D,uDAAoD;
|
|
1
|
+
{"version":3,"file":"loadGraph.js","sourceRoot":"","sources":["../../src/model/loadGraph.ts"],"names":[],"mappings":"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"}
|