@ttsc/graph 0.19.3 → 0.20.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.
Files changed (82) hide show
  1. package/lib/TtscGraphApplication.js +3 -1
  2. package/lib/TtscGraphApplication.js.map +1 -1
  3. package/lib/bin.js +15 -3
  4. package/lib/bin.js.map +1 -1
  5. package/lib/index.d.ts +13 -2
  6. package/lib/index.js +24 -30
  7. package/lib/index.js.map +1 -1
  8. package/lib/launcherArgs.d.ts +24 -0
  9. package/lib/launcherArgs.js +136 -0
  10. package/lib/launcherArgs.js.map +1 -0
  11. package/lib/model/TtscGraphMemory.d.ts +9 -5
  12. package/lib/model/TtscGraphMemory.js +35 -58
  13. package/lib/model/TtscGraphMemory.js.map +1 -1
  14. package/lib/model/TtscGraphNodeId.d.ts +17 -0
  15. package/lib/model/TtscGraphNodeId.js +69 -0
  16. package/lib/model/TtscGraphNodeId.js.map +1 -0
  17. package/lib/model/TtscGraphSession.d.ts +23 -7
  18. package/lib/model/TtscGraphSession.js +402 -210
  19. package/lib/model/TtscGraphSession.js.map +1 -1
  20. package/lib/model/TtscGraphSourceReader.d.ts +27 -0
  21. package/lib/model/TtscGraphSourceReader.js +97 -0
  22. package/lib/model/TtscGraphSourceReader.js.map +1 -0
  23. package/lib/model/loadGraph.d.ts +4 -4
  24. package/lib/model/loadGraph.js +233 -168
  25. package/lib/model/loadGraph.js.map +1 -1
  26. package/lib/reduce.d.ts +4 -1
  27. package/lib/reduce.js +112 -29
  28. package/lib/reduce.js.map +1 -1
  29. package/lib/server/createServer.js +17 -6
  30. package/lib/server/createServer.js.map +1 -1
  31. package/lib/server/pathPolicy.d.ts +6 -0
  32. package/lib/server/pathPolicy.js +10 -1
  33. package/lib/server/pathPolicy.js.map +1 -1
  34. package/lib/server/resolveHandle.js +22 -18
  35. package/lib/server/resolveHandle.js.map +1 -1
  36. package/lib/server/resultAudit.d.ts +41 -20
  37. package/lib/server/resultAudit.js +62 -34
  38. package/lib/server/resultAudit.js.map +1 -1
  39. package/lib/server/resultNext.d.ts +5 -0
  40. package/lib/server/resultNext.js.map +1 -1
  41. package/lib/server/runDetails.d.ts +2 -2
  42. package/lib/server/runDetails.js +54 -108
  43. package/lib/server/runDetails.js.map +1 -1
  44. package/lib/server/runEntrypoints.js +1 -1
  45. package/lib/server/runEntrypoints.js.map +1 -1
  46. package/lib/server/runLookup.js +1 -1
  47. package/lib/server/runLookup.js.map +1 -1
  48. package/lib/server/runTour.js +113 -30
  49. package/lib/server/runTour.js.map +1 -1
  50. package/lib/server/runTrace.d.ts +22 -0
  51. package/lib/server/runTrace.js +293 -63
  52. package/lib/server/runTrace.js.map +1 -1
  53. package/lib/structures/ITtscGraphDump.d.ts +13 -13
  54. package/lib/structures/ITtscGraphNode.d.ts +34 -0
  55. package/lib/structures/ITtscGraphTrace.d.ts +1 -1
  56. package/lib/view.js +18 -28
  57. package/lib/view.js.map +1 -1
  58. package/package.json +5 -5
  59. package/src/TtscGraphApplication.ts +5 -1
  60. package/src/bin.ts +13 -3
  61. package/src/index.ts +34 -27
  62. package/src/launcherArgs.ts +168 -0
  63. package/src/model/TtscGraphMemory.ts +34 -60
  64. package/src/model/TtscGraphNodeId.ts +77 -0
  65. package/src/model/TtscGraphSession.ts +228 -55
  66. package/src/model/TtscGraphSourceReader.ts +117 -0
  67. package/src/model/loadGraph.ts +4 -4
  68. package/src/reduce.ts +136 -31
  69. package/src/server/createServer.ts +12 -2
  70. package/src/server/pathPolicy.ts +10 -1
  71. package/src/server/resolveHandle.ts +21 -22
  72. package/src/server/resultAudit.ts +64 -33
  73. package/src/server/resultNext.ts +6 -0
  74. package/src/server/runDetails.ts +57 -113
  75. package/src/server/runEntrypoints.ts +1 -1
  76. package/src/server/runLookup.ts +1 -1
  77. package/src/server/runTour.ts +133 -39
  78. package/src/server/runTrace.ts +401 -65
  79. package/src/structures/ITtscGraphDump.ts +13 -13
  80. package/src/structures/ITtscGraphNode.ts +40 -0
  81. package/src/structures/ITtscGraphTrace.ts +1 -1
  82. package/src/view.ts +25 -23
@@ -57,11 +57,11 @@ const MAX_DUMP_BYTES = 1024 * 1024 * 1024;
57
57
  * constant out of this file and fails if the pair drifts.
58
58
  *
59
59
  * Exported because the resident session reads the same dump body over the serve
60
- * protocol and has to hold it to the same number: the envelope's version and the
61
- * body's are independent, so a producer can speak this protocol and still send a
62
- * body from another schema.
60
+ * protocol and has to hold it to the same number: the envelope's version and
61
+ * the body's are independent, so a producer can speak this protocol and still
62
+ * send a body from another schema.
63
63
  */
64
- exports.DUMP_SCHEMA_VERSION = 3;
64
+ exports.DUMP_SCHEMA_VERSION = 6;
65
65
  /**
66
66
  * Build the resident {@link TtscGraphMemory} for a project by running `ttscgraph
67
67
  * dump` once and loading its JSON. This is the one-shot path for direct callers
@@ -127,10 +127,24 @@ function parseDump(json) {
127
127
  }
128
128
  return (() => {
129
129
  const _ip0 = input => "string" === typeof input["file"];
130
+ const _ip1 = input => "string" === typeof input["id"];
131
+ const _ip2 = input => true === _iv0.has(input["kind"]);
130
132
  const _iv0 = new Set(["class", "enum", "external_symbol", "file", "function", "interface", "method", "module", "namespace", "package", "parameter", "property", "type", "variable"]);
131
- const _ip1 = input => "string" === typeof input["name"];
133
+ const _ip3 = input => "string" === typeof input["name"];
134
+ const _ip4 = input => undefined === input["qualifiedName"] || "string" === typeof input["qualifiedName"];
135
+ const _ip5 = input => "boolean" === typeof input["external"];
136
+ const _ip6 = input => undefined === input["ignored"] || "boolean" === typeof input["ignored"];
137
+ const _ip7 = input => undefined === input["exported"] || "boolean" === typeof input["exported"];
138
+ const _ip8 = input => undefined === input["closure"] || "boolean" === typeof input["closure"];
139
+ const _ip9 = input => undefined === input["modifiers"] || Array.isArray(input["modifiers"]) && input["modifiers"].every(elem => true === _iv1.has(elem));
132
140
  const _iv1 = new Set(["abstract", "async", "const", "declare", "default", "export", "optional", "private", "protected", "public", "readonly", "static"]);
133
- const _ip2 = input => undefined === input["evidence"] || "object" === typeof input["evidence"] && null !== input["evidence"] && _io12(input["evidence"]);
141
+ const _ip10 = input => undefined === input["literals"] || Array.isArray(input["literals"]) && input["literals"].every(elem => "string" === typeof elem);
142
+ const _ip11 = input => undefined === input["enumMembers"] || Array.isArray(input["enumMembers"]) && input["enumMembers"].every(elem => "object" === typeof elem && null !== elem && _io9(elem));
143
+ const _ip12 = input => undefined === input["objectMembers"] || Array.isArray(input["objectMembers"]) && input["objectMembers"].every(elem => "object" === typeof elem && null !== elem && _io10(elem));
144
+ const _ip13 = input => undefined === input["decorators"] || Array.isArray(input["decorators"]) && input["decorators"].every(elem => "object" === typeof elem && null !== elem && _io11(elem));
145
+ const _ip14 = input => undefined === input["signature"] || "string" === typeof input["signature"];
146
+ const _ip15 = input => undefined === input["evidence"] || "object" === typeof input["evidence"] && null !== input["evidence"] && _io13(input["evidence"]);
147
+ const _ip16 = input => undefined === input["implementation"] || "object" === typeof input["implementation"] && null !== input["implementation"] && _io13(input["implementation"]);
134
148
  const _iv2 = new Set(["accesses", "calls", "contains", "decorates", "dispatches", "exports", "extends", "implements", "imports", "instantiates", "overrides", "renders", "tests", "type_ref"]);
135
149
  const _ap0 = (input, _path, _exceptionable = true) => "string" === typeof input["file"] || _assertGuard_1._assertGuard(_exceptionable, {
136
150
  method: "typia.assert",
@@ -138,27 +152,181 @@ function parseDump(json) {
138
152
  expected: "string",
139
153
  value: input["file"]
140
154
  }, _errorFactory);
155
+ const _ap1 = (input, _path, _exceptionable = true) => "string" === typeof input["id"] || _assertGuard_1._assertGuard(_exceptionable, {
156
+ method: "typia.assert",
157
+ path: _path + ".id",
158
+ expected: "string",
159
+ value: input["id"]
160
+ }, _errorFactory);
161
+ const _ap2 = (input, _path, _exceptionable = true) => true === _av0.has(input["kind"]) || _assertGuard_1._assertGuard(_exceptionable, {
162
+ method: "typia.assert",
163
+ path: _path + ".kind",
164
+ expected: _ae0,
165
+ value: input["kind"]
166
+ }, _errorFactory);
141
167
  const _av0 = new Set(["class", "enum", "external_symbol", "file", "function", "interface", "method", "module", "namespace", "package", "parameter", "property", "type", "variable"]);
142
168
  const _ae0 = "(\"class\" | \"enum\" | \"external_symbol\" | \"file\" | \"function\" | \"interface\" | \"method\" | \"module\" | \"namespace\" | \"package\" | \"parameter\" | \"property\" | \"type\" | \"variable\")";
143
- const _ap1 = (input, _path, _exceptionable = true) => "string" === typeof input["name"] || _assertGuard_1._assertGuard(_exceptionable, {
169
+ const _ap3 = (input, _path, _exceptionable = true) => "string" === typeof input["name"] || _assertGuard_1._assertGuard(_exceptionable, {
144
170
  method: "typia.assert",
145
171
  path: _path + ".name",
146
172
  expected: "string",
147
173
  value: input["name"]
148
174
  }, _errorFactory);
175
+ const _ap4 = (input, _path, _exceptionable = true) => undefined === input["qualifiedName"] || "string" === typeof input["qualifiedName"] || _assertGuard_1._assertGuard(_exceptionable, {
176
+ method: "typia.assert",
177
+ path: _path + ".qualifiedName",
178
+ expected: "(string | undefined)",
179
+ value: input["qualifiedName"]
180
+ }, _errorFactory);
181
+ const _ap5 = (input, _path, _exceptionable = true) => "boolean" === typeof input["external"] || _assertGuard_1._assertGuard(_exceptionable, {
182
+ method: "typia.assert",
183
+ path: _path + ".external",
184
+ expected: "boolean",
185
+ value: input["external"]
186
+ }, _errorFactory);
187
+ const _ap6 = (input, _path, _exceptionable = true) => undefined === input["ignored"] || "boolean" === typeof input["ignored"] || _assertGuard_1._assertGuard(_exceptionable, {
188
+ method: "typia.assert",
189
+ path: _path + ".ignored",
190
+ expected: "(boolean | undefined)",
191
+ value: input["ignored"]
192
+ }, _errorFactory);
193
+ const _ap7 = (input, _path, _exceptionable = true) => undefined === input["exported"] || "boolean" === typeof input["exported"] || _assertGuard_1._assertGuard(_exceptionable, {
194
+ method: "typia.assert",
195
+ path: _path + ".exported",
196
+ expected: "(boolean | undefined)",
197
+ value: input["exported"]
198
+ }, _errorFactory);
199
+ const _ap8 = (input, _path, _exceptionable = true) => undefined === input["closure"] || "boolean" === typeof input["closure"] || _assertGuard_1._assertGuard(_exceptionable, {
200
+ method: "typia.assert",
201
+ path: _path + ".closure",
202
+ expected: "(boolean | undefined)",
203
+ value: input["closure"]
204
+ }, _errorFactory);
205
+ const _ap9 = (input, _path, _exceptionable = true) => undefined === input["modifiers"] || (Array.isArray(input["modifiers"]) || _assertGuard_1._assertGuard(_exceptionable, {
206
+ method: "typia.assert",
207
+ path: _path + ".modifiers",
208
+ expected: "(Array<TtscGraphNodeModifier> | undefined)",
209
+ value: input["modifiers"]
210
+ }, _errorFactory)) && input["modifiers"].every((elem, _index21) => true === _av1.has(elem) || _assertGuard_1._assertGuard(_exceptionable, {
211
+ method: "typia.assert",
212
+ path: _path + ".modifiers[" + _index21 + "]",
213
+ expected: _ae1,
214
+ value: elem
215
+ }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
216
+ method: "typia.assert",
217
+ path: _path + ".modifiers",
218
+ expected: "(Array<TtscGraphNodeModifier> | undefined)",
219
+ value: input["modifiers"]
220
+ }, _errorFactory);
149
221
  const _av1 = new Set(["abstract", "async", "const", "declare", "default", "export", "optional", "private", "protected", "public", "readonly", "static"]);
150
222
  const _ae1 = "(\"abstract\" | \"async\" | \"const\" | \"declare\" | \"default\" | \"export\" | \"optional\" | \"private\" | \"protected\" | \"public\" | \"readonly\" | \"static\")";
151
- const _ap2 = (input, _path, _exceptionable = true) => undefined === input["evidence"] || ("object" === typeof input["evidence"] && null !== input["evidence"] || _assertGuard_1._assertGuard(_exceptionable, {
223
+ const _ap10 = (input, _path, _exceptionable = true) => undefined === input["literals"] || (Array.isArray(input["literals"]) || _assertGuard_1._assertGuard(_exceptionable, {
224
+ method: "typia.assert",
225
+ path: _path + ".literals",
226
+ expected: "(Array<string> | undefined)",
227
+ value: input["literals"]
228
+ }, _errorFactory)) && input["literals"].every((elem, _index22) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
229
+ method: "typia.assert",
230
+ path: _path + ".literals[" + _index22 + "]",
231
+ expected: "string",
232
+ value: elem
233
+ }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
234
+ method: "typia.assert",
235
+ path: _path + ".literals",
236
+ expected: "(Array<string> | undefined)",
237
+ value: input["literals"]
238
+ }, _errorFactory);
239
+ const _ap11 = (input, _path, _exceptionable = true) => undefined === input["enumMembers"] || (Array.isArray(input["enumMembers"]) || _assertGuard_1._assertGuard(_exceptionable, {
240
+ method: "typia.assert",
241
+ path: _path + ".enumMembers",
242
+ expected: "(Array<ITtscGraphNode.IEnumMember> | undefined)",
243
+ value: input["enumMembers"]
244
+ }, _errorFactory)) && input["enumMembers"].every((elem, _index23) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
245
+ method: "typia.assert",
246
+ path: _path + ".enumMembers[" + _index23 + "]",
247
+ expected: "ITtscGraphNode.IEnumMember",
248
+ value: elem
249
+ }, _errorFactory)) && _ao9(elem, _path + ".enumMembers[" + _index23 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
250
+ method: "typia.assert",
251
+ path: _path + ".enumMembers[" + _index23 + "]",
252
+ expected: "ITtscGraphNode.IEnumMember",
253
+ value: elem
254
+ }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
255
+ method: "typia.assert",
256
+ path: _path + ".enumMembers",
257
+ expected: "(Array<ITtscGraphNode.IEnumMember> | undefined)",
258
+ value: input["enumMembers"]
259
+ }, _errorFactory);
260
+ const _ap12 = (input, _path, _exceptionable = true) => undefined === input["objectMembers"] || (Array.isArray(input["objectMembers"]) || _assertGuard_1._assertGuard(_exceptionable, {
261
+ method: "typia.assert",
262
+ path: _path + ".objectMembers",
263
+ expected: "(Array<ITtscGraphNode.IObjectMember> | undefined)",
264
+ value: input["objectMembers"]
265
+ }, _errorFactory)) && input["objectMembers"].every((elem, _index24) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
266
+ method: "typia.assert",
267
+ path: _path + ".objectMembers[" + _index24 + "]",
268
+ expected: "ITtscGraphNode.IObjectMember",
269
+ value: elem
270
+ }, _errorFactory)) && _ao10(elem, _path + ".objectMembers[" + _index24 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
271
+ method: "typia.assert",
272
+ path: _path + ".objectMembers[" + _index24 + "]",
273
+ expected: "ITtscGraphNode.IObjectMember",
274
+ value: elem
275
+ }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
276
+ method: "typia.assert",
277
+ path: _path + ".objectMembers",
278
+ expected: "(Array<ITtscGraphNode.IObjectMember> | undefined)",
279
+ value: input["objectMembers"]
280
+ }, _errorFactory);
281
+ const _ap13 = (input, _path, _exceptionable = true) => undefined === input["decorators"] || (Array.isArray(input["decorators"]) || _assertGuard_1._assertGuard(_exceptionable, {
282
+ method: "typia.assert",
283
+ path: _path + ".decorators",
284
+ expected: "(Array<ITtscGraphDecorator> | undefined)",
285
+ value: input["decorators"]
286
+ }, _errorFactory)) && input["decorators"].every((elem, _index25) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
287
+ method: "typia.assert",
288
+ path: _path + ".decorators[" + _index25 + "]",
289
+ expected: "ITtscGraphDecorator",
290
+ value: elem
291
+ }, _errorFactory)) && _ao11(elem, _path + ".decorators[" + _index25 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
292
+ method: "typia.assert",
293
+ path: _path + ".decorators[" + _index25 + "]",
294
+ expected: "ITtscGraphDecorator",
295
+ value: elem
296
+ }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
297
+ method: "typia.assert",
298
+ path: _path + ".decorators",
299
+ expected: "(Array<ITtscGraphDecorator> | undefined)",
300
+ value: input["decorators"]
301
+ }, _errorFactory);
302
+ const _ap14 = (input, _path, _exceptionable = true) => undefined === input["signature"] || "string" === typeof input["signature"] || _assertGuard_1._assertGuard(_exceptionable, {
303
+ method: "typia.assert",
304
+ path: _path + ".signature",
305
+ expected: "(string | undefined)",
306
+ value: input["signature"]
307
+ }, _errorFactory);
308
+ const _ap15 = (input, _path, _exceptionable = true) => undefined === input["evidence"] || ("object" === typeof input["evidence"] && null !== input["evidence"] || _assertGuard_1._assertGuard(_exceptionable, {
152
309
  method: "typia.assert",
153
310
  path: _path + ".evidence",
154
311
  expected: "(ITtscGraphSpan | undefined)",
155
312
  value: input["evidence"]
156
- }, _errorFactory)) && _ao12(input["evidence"], _path + ".evidence", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
313
+ }, _errorFactory)) && _ao13(input["evidence"], _path + ".evidence", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
157
314
  method: "typia.assert",
158
315
  path: _path + ".evidence",
159
316
  expected: "(ITtscGraphSpan | undefined)",
160
317
  value: input["evidence"]
161
318
  }, _errorFactory);
319
+ const _ap16 = (input, _path, _exceptionable = true) => undefined === input["implementation"] || ("object" === typeof input["implementation"] && null !== input["implementation"] || _assertGuard_1._assertGuard(_exceptionable, {
320
+ method: "typia.assert",
321
+ path: _path + ".implementation",
322
+ expected: "(ITtscGraphSpan | undefined)",
323
+ value: input["implementation"]
324
+ }, _errorFactory)) && _ao13(input["implementation"], _path + ".implementation", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
325
+ method: "typia.assert",
326
+ path: _path + ".implementation",
327
+ expected: "(ITtscGraphSpan | undefined)",
328
+ value: input["implementation"]
329
+ }, _errorFactory);
162
330
  const _av2 = new Set(["accesses", "calls", "contains", "decorates", "dispatches", "exports", "extends", "implements", "imports", "instantiates", "overrides", "renders", "tests", "type_ref"]);
163
331
  const _ae2 = "(\"accesses\" | \"calls\" | \"contains\" | \"decorates\" | \"dispatches\" | \"exports\" | \"extends\" | \"implements\" | \"imports\" | \"instantiates\" | \"overrides\" | \"renders\" | \"tests\" | \"type_ref\")";
164
332
  const _ao0 = (input, _path, _exceptionable = true) => ("string" === typeof input.project || _assertGuard_1._assertGuard(_exceptionable, {
@@ -186,14 +354,14 @@ function parseDump(json) {
186
354
  path: _path + ".diagnostics",
187
355
  expected: "Array<ITtscGraphDump.IDiagnostic>",
188
356
  value: input.diagnostics
189
- }, _errorFactory)) && input.diagnostics.every((elem, _index13) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
357
+ }, _errorFactory)) && input.diagnostics.every((elem, _index14) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
190
358
  method: "typia.assert",
191
- path: _path + ".diagnostics[" + _index13 + "]",
359
+ path: _path + ".diagnostics[" + _index14 + "]",
192
360
  expected: "ITtscGraphDump.IDiagnostic",
193
361
  value: elem
194
- }, _errorFactory)) && _ao7(elem, _path + ".diagnostics[" + _index13 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
362
+ }, _errorFactory)) && _ao7(elem, _path + ".diagnostics[" + _index14 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
195
363
  method: "typia.assert",
196
- path: _path + ".diagnostics[" + _index13 + "]",
364
+ path: _path + ".diagnostics[" + _index14 + "]",
197
365
  expected: "ITtscGraphDump.IDiagnostic",
198
366
  value: elem
199
367
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -206,14 +374,14 @@ function parseDump(json) {
206
374
  path: _path + ".nodes",
207
375
  expected: "Array<ITtscGraphDump.INode>",
208
376
  value: input.nodes
209
- }, _errorFactory)) && input.nodes.every((elem, _index14) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
377
+ }, _errorFactory)) && input.nodes.every((elem, _index15) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
210
378
  method: "typia.assert",
211
- path: _path + ".nodes[" + _index14 + "]",
379
+ path: _path + ".nodes[" + _index15 + "]",
212
380
  expected: "ITtscGraphDump.INode",
213
381
  value: elem
214
- }, _errorFactory)) && _ao8(elem, _path + ".nodes[" + _index14 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
382
+ }, _errorFactory)) && _ao8(elem, _path + ".nodes[" + _index15 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
215
383
  method: "typia.assert",
216
- path: _path + ".nodes[" + _index14 + "]",
384
+ path: _path + ".nodes[" + _index15 + "]",
217
385
  expected: "ITtscGraphDump.INode",
218
386
  value: elem
219
387
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -226,14 +394,14 @@ function parseDump(json) {
226
394
  path: _path + ".edges",
227
395
  expected: "Array<ITtscGraphDump.IEdge>",
228
396
  value: input.edges
229
- }, _errorFactory)) && input.edges.every((elem, _index15) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
397
+ }, _errorFactory)) && input.edges.every((elem, _index16) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
230
398
  method: "typia.assert",
231
- path: _path + ".edges[" + _index15 + "]",
399
+ path: _path + ".edges[" + _index16 + "]",
232
400
  expected: "ITtscGraphDump.IEdge",
233
401
  value: elem
234
- }, _errorFactory)) && _ao13(elem, _path + ".edges[" + _index15 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
402
+ }, _errorFactory)) && _ao14(elem, _path + ".edges[" + _index16 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
235
403
  method: "typia.assert",
236
- path: _path + ".edges[" + _index15 + "]",
404
+ path: _path + ".edges[" + _index16 + "]",
237
405
  expected: "ITtscGraphDump.IEdge",
238
406
  value: elem
239
407
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -252,9 +420,9 @@ function parseDump(json) {
252
420
  path: _path + ".capabilities",
253
421
  expected: "Array<string>",
254
422
  value: input.capabilities
255
- }, _errorFactory)) && input.capabilities.every((elem, _index16) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
423
+ }, _errorFactory)) && input.capabilities.every((elem, _index17) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
256
424
  method: "typia.assert",
257
- path: _path + ".capabilities[" + _index16 + "]",
425
+ path: _path + ".capabilities[" + _index17 + "]",
258
426
  expected: "string",
259
427
  value: elem
260
428
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -287,14 +455,14 @@ function parseDump(json) {
287
455
  path: _path + ".sources",
288
456
  expected: "Array<ITtscGraphDump.ISourceDigest>",
289
457
  value: input.sources
290
- }, _errorFactory)) && input.sources.every((elem, _index17) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
458
+ }, _errorFactory)) && input.sources.every((elem, _index18) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
291
459
  method: "typia.assert",
292
- path: _path + ".sources[" + _index17 + "]",
460
+ path: _path + ".sources[" + _index18 + "]",
293
461
  expected: "ITtscGraphDump.ISourceDigest",
294
462
  value: elem
295
- }, _errorFactory)) && _ao6(elem, _path + ".sources[" + _index17 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
463
+ }, _errorFactory)) && _ao6(elem, _path + ".sources[" + _index18 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
296
464
  method: "typia.assert",
297
- path: _path + ".sources[" + _index17 + "]",
465
+ path: _path + ".sources[" + _index18 + "]",
298
466
  expected: "ITtscGraphDump.ISourceDigest",
299
467
  value: elem
300
468
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -303,19 +471,30 @@ function parseDump(json) {
303
471
  expected: "Array<ITtscGraphDump.ISourceDigest>",
304
472
  value: input.sources
305
473
  }, _errorFactory));
306
- const _ao10 = (input, _path, _exceptionable = true) => _ap1(input, _path, true && _exceptionable) && ((Array.isArray(input.arguments) || _assertGuard_1._assertGuard(_exceptionable, {
474
+ const _ao10 = (input, _path, _exceptionable = true) => _ap3(input, _path, true && _exceptionable) && ("method" === input.kind || "property" === input.kind || _assertGuard_1._assertGuard(_exceptionable, {
475
+ method: "typia.assert",
476
+ path: _path + ".kind",
477
+ expected: "(\"method\" | \"property\")",
478
+ value: input.kind
479
+ }, _errorFactory)) && (undefined === input.line || "number" === typeof input.line || _assertGuard_1._assertGuard(_exceptionable, {
480
+ method: "typia.assert",
481
+ path: _path + ".line",
482
+ expected: "(number | undefined)",
483
+ value: input.line
484
+ }, _errorFactory)) && _ap14(input, _path, true && _exceptionable);
485
+ const _ao11 = (input, _path, _exceptionable = true) => _ap3(input, _path, true && _exceptionable) && ((Array.isArray(input.arguments) || _assertGuard_1._assertGuard(_exceptionable, {
307
486
  method: "typia.assert",
308
487
  path: _path + ".arguments",
309
488
  expected: "Array<ITtscGraphDecorator.IArgument>",
310
489
  value: input.arguments
311
- }, _errorFactory)) && input.arguments.every((elem, _index24) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _assertGuard_1._assertGuard(_exceptionable, {
490
+ }, _errorFactory)) && input.arguments.every((elem, _index26) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || _assertGuard_1._assertGuard(_exceptionable, {
312
491
  method: "typia.assert",
313
- path: _path + ".arguments[" + _index24 + "]",
492
+ path: _path + ".arguments[" + _index26 + "]",
314
493
  expected: "ITtscGraphDecorator.IArgument",
315
494
  value: elem
316
- }, _errorFactory)) && _ao11(elem, _path + ".arguments[" + _index24 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
495
+ }, _errorFactory)) && _ao12(elem, _path + ".arguments[" + _index26 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
317
496
  method: "typia.assert",
318
- path: _path + ".arguments[" + _index24 + "]",
497
+ path: _path + ".arguments[" + _index26 + "]",
319
498
  expected: "ITtscGraphDecorator.IArgument",
320
499
  value: elem
321
500
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -324,13 +503,13 @@ function parseDump(json) {
324
503
  expected: "Array<ITtscGraphDecorator.IArgument>",
325
504
  value: input.arguments
326
505
  }, _errorFactory));
327
- const _ao11 = (input, _path, _exceptionable = true) => undefined === input.literal || "string" === typeof input.literal || "number" === typeof input.literal || "boolean" === typeof input.literal || _assertGuard_1._assertGuard(_exceptionable, {
506
+ const _ao12 = (input, _path, _exceptionable = true) => undefined === input.literal || "string" === typeof input.literal || "number" === typeof input.literal || "boolean" === typeof input.literal || _assertGuard_1._assertGuard(_exceptionable, {
328
507
  method: "typia.assert",
329
508
  path: _path + ".literal",
330
509
  expected: "(boolean | number | string | undefined)",
331
510
  value: input.literal
332
511
  }, _errorFactory);
333
- const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.file || "string" === typeof input.file || _assertGuard_1._assertGuard(_exceptionable, {
512
+ const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.file || "string" === typeof input.file || _assertGuard_1._assertGuard(_exceptionable, {
334
513
  method: "typia.assert",
335
514
  path: _path + ".file",
336
515
  expected: "(string | undefined)",
@@ -356,7 +535,7 @@ function parseDump(json) {
356
535
  expected: "(number | undefined)",
357
536
  value: input.endCol
358
537
  }, _errorFactory));
359
- const _ao13 = (input, _path, _exceptionable = true) => ("string" === typeof input.from || _assertGuard_1._assertGuard(_exceptionable, {
538
+ const _ao14 = (input, _path, _exceptionable = true) => ("string" === typeof input.from || _assertGuard_1._assertGuard(_exceptionable, {
360
539
  method: "typia.assert",
361
540
  path: _path + ".from",
362
541
  expected: "string",
@@ -371,7 +550,7 @@ function parseDump(json) {
371
550
  path: _path + ".kind",
372
551
  expected: _ae2,
373
552
  value: input.kind
374
- }, _errorFactory)) && _ap2(input, _path, true && _exceptionable);
553
+ }, _errorFactory)) && _ap15(input, _path, true && _exceptionable);
375
554
  const _ao2 = (input, _path, _exceptionable = true) => ("string" === typeof input.tool || _assertGuard_1._assertGuard(_exceptionable, {
376
555
  method: "typia.assert",
377
556
  path: _path + ".tool",
@@ -393,14 +572,14 @@ function parseDump(json) {
393
572
  path: _path + ".configs",
394
573
  expected: "Array<ITtscGraphDump.IFileDigest>",
395
574
  value: input.configs
396
- }, _errorFactory)) && input.configs.every((elem, _index18) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
575
+ }, _errorFactory)) && input.configs.every((elem, _index19) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
397
576
  method: "typia.assert",
398
- path: _path + ".configs[" + _index18 + "]",
577
+ path: _path + ".configs[" + _index19 + "]",
399
578
  expected: "ITtscGraphDump.IFileDigest",
400
579
  value: elem
401
- }, _errorFactory)) && _ao4(elem, _path + ".configs[" + _index18 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
580
+ }, _errorFactory)) && _ao4(elem, _path + ".configs[" + _index19 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
402
581
  method: "typia.assert",
403
- path: _path + ".configs[" + _index18 + "]",
582
+ path: _path + ".configs[" + _index19 + "]",
404
583
  expected: "ITtscGraphDump.IFileDigest",
405
584
  value: elem
406
585
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -413,14 +592,14 @@ function parseDump(json) {
413
592
  path: _path + ".roots",
414
593
  expected: "Array<ITtscGraphDump.IRootFile>",
415
594
  value: input.roots
416
- }, _errorFactory)) && input.roots.every((elem, _index19) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
595
+ }, _errorFactory)) && input.roots.every((elem, _index20) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
417
596
  method: "typia.assert",
418
- path: _path + ".roots[" + _index19 + "]",
597
+ path: _path + ".roots[" + _index20 + "]",
419
598
  expected: "ITtscGraphDump.IRootFile",
420
599
  value: elem
421
- }, _errorFactory)) && _ao5(elem, _path + ".roots[" + _index19 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
600
+ }, _errorFactory)) && _ao5(elem, _path + ".roots[" + _index20 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
422
601
  method: "typia.assert",
423
- path: _path + ".roots[" + _index19 + "]",
602
+ path: _path + ".roots[" + _index20 + "]",
424
603
  expected: "ITtscGraphDump.IRootFile",
425
604
  value: elem
426
605
  }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
@@ -478,142 +657,28 @@ function parseDump(json) {
478
657
  expected: "string",
479
658
  value: input.message
480
659
  }, _errorFactory));
481
- const _ao8 = (input, _path, _exceptionable = true) => ("string" === typeof input.id || _assertGuard_1._assertGuard(_exceptionable, {
482
- method: "typia.assert",
483
- path: _path + ".id",
484
- expected: "string",
485
- value: input.id
486
- }, _errorFactory)) && (true === _av0.has(input.kind) || _assertGuard_1._assertGuard(_exceptionable, {
487
- method: "typia.assert",
488
- path: _path + ".kind",
489
- expected: _ae0,
490
- value: input.kind
491
- }, _errorFactory)) && _ap1(input, _path, true && _exceptionable) && (undefined === input.qualifiedName || "string" === typeof input.qualifiedName || _assertGuard_1._assertGuard(_exceptionable, {
492
- method: "typia.assert",
493
- path: _path + ".qualifiedName",
494
- expected: "(string | undefined)",
495
- value: input.qualifiedName
496
- }, _errorFactory)) && _ap0(input, _path, true && _exceptionable) && ("boolean" === typeof input.external || _assertGuard_1._assertGuard(_exceptionable, {
497
- method: "typia.assert",
498
- path: _path + ".external",
499
- expected: "boolean",
500
- value: input.external
501
- }, _errorFactory)) && (undefined === input.ignored || "boolean" === typeof input.ignored || _assertGuard_1._assertGuard(_exceptionable, {
502
- method: "typia.assert",
503
- path: _path + ".ignored",
504
- expected: "(boolean | undefined)",
505
- value: input.ignored
506
- }, _errorFactory)) && (undefined === input.exported || "boolean" === typeof input.exported || _assertGuard_1._assertGuard(_exceptionable, {
507
- method: "typia.assert",
508
- path: _path + ".exported",
509
- expected: "(boolean | undefined)",
510
- value: input.exported
511
- }, _errorFactory)) && (undefined === input.closure || "boolean" === typeof input.closure || _assertGuard_1._assertGuard(_exceptionable, {
512
- method: "typia.assert",
513
- path: _path + ".closure",
514
- expected: "(boolean | undefined)",
515
- value: input.closure
516
- }, _errorFactory)) && (undefined === input.modifiers || (Array.isArray(input.modifiers) || _assertGuard_1._assertGuard(_exceptionable, {
517
- method: "typia.assert",
518
- path: _path + ".modifiers",
519
- expected: "(Array<TtscGraphNodeModifier> | undefined)",
520
- value: input.modifiers
521
- }, _errorFactory)) && input.modifiers.every((elem, _index20) => true === _av1.has(elem) || _assertGuard_1._assertGuard(_exceptionable, {
522
- method: "typia.assert",
523
- path: _path + ".modifiers[" + _index20 + "]",
524
- expected: _ae1,
525
- value: elem
526
- }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
527
- method: "typia.assert",
528
- path: _path + ".modifiers",
529
- expected: "(Array<TtscGraphNodeModifier> | undefined)",
530
- value: input.modifiers
531
- }, _errorFactory)) && (undefined === input.literals || (Array.isArray(input.literals) || _assertGuard_1._assertGuard(_exceptionable, {
532
- method: "typia.assert",
533
- path: _path + ".literals",
534
- expected: "(Array<string> | undefined)",
535
- value: input.literals
536
- }, _errorFactory)) && input.literals.every((elem, _index21) => "string" === typeof elem || _assertGuard_1._assertGuard(_exceptionable, {
537
- method: "typia.assert",
538
- path: _path + ".literals[" + _index21 + "]",
539
- expected: "string",
540
- value: elem
541
- }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
542
- method: "typia.assert",
543
- path: _path + ".literals",
544
- expected: "(Array<string> | undefined)",
545
- value: input.literals
546
- }, _errorFactory)) && (undefined === input.enumMembers || (Array.isArray(input.enumMembers) || _assertGuard_1._assertGuard(_exceptionable, {
547
- method: "typia.assert",
548
- path: _path + ".enumMembers",
549
- expected: "(Array<ITtscGraphNode.IEnumMember> | undefined)",
550
- value: input.enumMembers
551
- }, _errorFactory)) && input.enumMembers.every((elem, _index22) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
552
- method: "typia.assert",
553
- path: _path + ".enumMembers[" + _index22 + "]",
554
- expected: "ITtscGraphNode.IEnumMember",
555
- value: elem
556
- }, _errorFactory)) && _ao9(elem, _path + ".enumMembers[" + _index22 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
557
- method: "typia.assert",
558
- path: _path + ".enumMembers[" + _index22 + "]",
559
- expected: "ITtscGraphNode.IEnumMember",
560
- value: elem
561
- }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
562
- method: "typia.assert",
563
- path: _path + ".enumMembers",
564
- expected: "(Array<ITtscGraphNode.IEnumMember> | undefined)",
565
- value: input.enumMembers
566
- }, _errorFactory)) && (undefined === input.decorators || (Array.isArray(input.decorators) || _assertGuard_1._assertGuard(_exceptionable, {
567
- method: "typia.assert",
568
- path: _path + ".decorators",
569
- expected: "(Array<ITtscGraphDecorator> | undefined)",
570
- value: input.decorators
571
- }, _errorFactory)) && input.decorators.every((elem, _index23) => ("object" === typeof elem && null !== elem || _assertGuard_1._assertGuard(_exceptionable, {
572
- method: "typia.assert",
573
- path: _path + ".decorators[" + _index23 + "]",
574
- expected: "ITtscGraphDecorator",
575
- value: elem
576
- }, _errorFactory)) && _ao10(elem, _path + ".decorators[" + _index23 + "]", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
577
- method: "typia.assert",
578
- path: _path + ".decorators[" + _index23 + "]",
579
- expected: "ITtscGraphDecorator",
580
- value: elem
581
- }, _errorFactory)) || _assertGuard_1._assertGuard(_exceptionable, {
582
- method: "typia.assert",
583
- path: _path + ".decorators",
584
- expected: "(Array<ITtscGraphDecorator> | undefined)",
585
- value: input.decorators
586
- }, _errorFactory)) && _ap2(input, _path, true && _exceptionable) && (undefined === input.implementation || ("object" === typeof input.implementation && null !== input.implementation || _assertGuard_1._assertGuard(_exceptionable, {
587
- method: "typia.assert",
588
- path: _path + ".implementation",
589
- expected: "(ITtscGraphSpan | undefined)",
590
- value: input.implementation
591
- }, _errorFactory)) && _ao12(input.implementation, _path + ".implementation", true && _exceptionable) || _assertGuard_1._assertGuard(_exceptionable, {
592
- method: "typia.assert",
593
- path: _path + ".implementation",
594
- expected: "(ITtscGraphSpan | undefined)",
595
- value: input.implementation
596
- }, _errorFactory));
597
- const _ao9 = (input, _path, _exceptionable = true) => _ap1(input, _path, true && _exceptionable) && (undefined === input.value || "string" === typeof input.value || _assertGuard_1._assertGuard(_exceptionable, {
660
+ const _ao8 = (input, _path, _exceptionable = true) => _ap1(input, _path, true && _exceptionable) && _ap2(input, _path, true && _exceptionable) && _ap3(input, _path, true && _exceptionable) && _ap4(input, _path, true && _exceptionable) && _ap0(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);
661
+ const _ao9 = (input, _path, _exceptionable = true) => _ap3(input, _path, true && _exceptionable) && (undefined === input.value || "string" === typeof input.value || _assertGuard_1._assertGuard(_exceptionable, {
598
662
  method: "typia.assert",
599
663
  path: _path + ".value",
600
664
  expected: "(string | undefined)",
601
665
  value: input.value
602
666
  }, _errorFactory));
603
- 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 && _io13(elem)));
667
+ 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 && _io14(elem)));
604
668
  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)));
605
- const _io10 = input => _ip1(input) && (Array.isArray(input.arguments) && input.arguments.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io11(elem)));
606
- const _io11 = input => undefined === input.literal || "string" === typeof input.literal || "number" === typeof input.literal || "boolean" === typeof input.literal;
607
- const _io12 = 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);
608
- const _io13 = input => "string" === typeof input.from && "string" === typeof input.to && true === _iv2.has(input.kind) && _ip2(input);
669
+ const _io10 = input => _ip3(input) && ("method" === input.kind || "property" === input.kind) && (undefined === input.line || "number" === typeof input.line) && _ip14(input);
670
+ const _io11 = input => _ip3(input) && (Array.isArray(input.arguments) && input.arguments.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io12(elem)));
671
+ const _io12 = input => undefined === input.literal || "string" === typeof input.literal || "number" === typeof input.literal || "boolean" === typeof input.literal;
672
+ const _io13 = 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);
673
+ const _io14 = input => "string" === typeof input.from && "string" === typeof input.to && true === _iv2.has(input.kind) && _ip15(input);
609
674
  const _io2 = input => "string" === typeof input.tool && "string" === typeof input.version && "string" === typeof input.typescript;
610
675
  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)));
611
676
  const _io4 = input => _ip0(input) && "string" === typeof input.digest;
612
677
  const _io5 = input => "string" === typeof input.config && _ip0(input);
613
678
  const _io6 = input => _ip0(input) && "string" === typeof input.checkerDigest && "string" === typeof input.diskDigest;
614
679
  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;
615
- const _io8 = input => "string" === typeof input.id && true === _iv0.has(input.kind) && _ip1(input) && (undefined === input.qualifiedName || "string" === typeof input.qualifiedName) && _ip0(input) && "boolean" === typeof input.external && (undefined === input.ignored || "boolean" === typeof input.ignored) && (undefined === input.exported || "boolean" === typeof input.exported) && (undefined === input.closure || "boolean" === typeof input.closure) && (undefined === input.modifiers || Array.isArray(input.modifiers) && input.modifiers.every(elem => true === _iv1.has(elem))) && (undefined === input.literals || Array.isArray(input.literals) && input.literals.every(elem => "string" === typeof elem)) && (undefined === input.enumMembers || Array.isArray(input.enumMembers) && input.enumMembers.every(elem => "object" === typeof elem && null !== elem && _io9(elem))) && (undefined === input.decorators || Array.isArray(input.decorators) && input.decorators.every(elem => "object" === typeof elem && null !== elem && _io10(elem))) && _ip2(input) && (undefined === input.implementation || "object" === typeof input.implementation && null !== input.implementation && _io12(input.implementation));
616
- const _io9 = input => _ip1(input) && (undefined === input.value || "string" === typeof input.value);
680
+ const _io8 = input => _ip1(input) && _ip2(input) && _ip3(input) && _ip4(input) && _ip0(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);
681
+ const _io9 = input => _ip3(input) && (undefined === input.value || "string" === typeof input.value);
617
682
  const __is = input => "object" === typeof input && null !== input && _io0(input);
618
683
  let _errorFactory;
619
684
  return (input, errorFactory) => {
@@ -1 +1 @@
1
- {"version":3,"file":"loadGraph.js","sourceRoot":"","sources":["../../src/model/loadGraph.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"loadGraph.js","sourceRoot":"","sources":["../../src/model/loadGraph.ts"],"names":[],"mappings":"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"}