@proteinjs/reflection-build 1.5.0 → 2.0.1

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 (97) hide show
  1. package/CHANGELOG.md +40 -0
  2. package/dist/modules/typescript-parser/declarations/ClassDeclaration.d.ts +1 -0
  3. package/dist/modules/typescript-parser/declarations/ClassDeclaration.js +1 -0
  4. package/dist/modules/typescript-parser/node-parser/class-parser.js +6 -0
  5. package/dist/src/BuildContract.d.ts +69 -0
  6. package/dist/src/BuildContract.js +393 -0
  7. package/dist/src/BuildContract.js.map +1 -0
  8. package/dist/src/ReflectionDoctor.d.ts +95 -0
  9. package/dist/src/ReflectionDoctor.js +588 -0
  10. package/dist/src/ReflectionDoctor.js.map +1 -0
  11. package/dist/src/build.d.ts +5 -1
  12. package/dist/src/build.js +13 -77
  13. package/dist/src/build.js.map +1 -1
  14. package/dist/src/codegen/writeGeneratedIndex.d.ts +18 -0
  15. package/dist/src/codegen/writeGeneratedIndex.js +58 -15
  16. package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
  17. package/dist/src/parser/createGraphBuilder.js +30 -5
  18. package/dist/src/parser/createGraphBuilder.js.map +1 -1
  19. package/dist/src/parser/types/createClassDeclaration.js +1 -4
  20. package/dist/src/parser/types/createClassDeclaration.js.map +1 -1
  21. package/dist/src/runBuild.js +12 -2
  22. package/dist/src/runBuild.js.map +1 -1
  23. package/dist/src/runDoctor.d.ts +2 -0
  24. package/dist/src/runDoctor.js +83 -0
  25. package/dist/src/runDoctor.js.map +1 -0
  26. package/dist/test/AbstractClassDeclaration.test.d.ts +1 -0
  27. package/dist/test/AbstractClassDeclaration.test.js +121 -0
  28. package/dist/test/AbstractClassDeclaration.test.js.map +1 -0
  29. package/dist/test/GraphEmitRelativePaths.test.d.ts +1 -0
  30. package/dist/test/GraphEmitRelativePaths.test.js +162 -0
  31. package/dist/test/GraphEmitRelativePaths.test.js.map +1 -0
  32. package/dist/test/ReflectionDoctor.test.d.ts +1 -0
  33. package/dist/test/ReflectionDoctor.test.js +316 -0
  34. package/dist/test/ReflectionDoctor.test.js.map +1 -0
  35. package/dist/test/TestSubpathContract.test.d.ts +1 -0
  36. package/dist/test/TestSubpathContract.test.js +260 -0
  37. package/dist/test/TestSubpathContract.test.js.map +1 -0
  38. package/dist/test/ValidateDontMutate.test.d.ts +1 -0
  39. package/dist/test/ValidateDontMutate.test.js +238 -0
  40. package/dist/test/ValidateDontMutate.test.js.map +1 -0
  41. package/dist/test/examples/source-repository/a/generated/index.js +1 -1
  42. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  43. package/dist/test/examples/source-repository/b/generated/index.js +1 -1
  44. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  45. package/modules/typescript-parser/declarations/ClassDeclaration.d.ts +1 -0
  46. package/modules/typescript-parser/declarations/ClassDeclaration.js +1 -0
  47. package/modules/typescript-parser/node-parser/class-parser.js +6 -0
  48. package/package.json +6 -5
  49. package/src/BuildContract.ts +384 -0
  50. package/src/ReflectionDoctor.ts +589 -0
  51. package/src/build.ts +19 -56
  52. package/src/codegen/writeGeneratedIndex.ts +51 -13
  53. package/src/parser/createGraphBuilder.ts +9 -4
  54. package/src/parser/types/createClassDeclaration.ts +5 -5
  55. package/src/runBuild.ts +7 -1
  56. package/src/runDoctor.ts +34 -0
  57. package/test/AbstractClassDeclaration.test.ts +97 -0
  58. package/test/GraphEmitRelativePaths.test.ts +95 -0
  59. package/test/ReflectionDoctor.test.ts +193 -0
  60. package/test/TestSubpathContract.test.ts +148 -0
  61. package/test/ValidateDontMutate.test.ts +126 -0
  62. package/test/examples/source-repository/a/dist/BuildContract.d.ts +69 -0
  63. package/test/examples/source-repository/a/dist/BuildContract.js +393 -0
  64. package/test/examples/source-repository/a/dist/BuildContract.js.map +1 -0
  65. package/test/examples/source-repository/a/dist/build.d.ts +5 -1
  66. package/test/examples/source-repository/a/dist/build.js +13 -77
  67. package/test/examples/source-repository/a/dist/build.js.map +1 -1
  68. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +18 -0
  69. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +58 -15
  70. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
  71. package/test/examples/source-repository/a/dist/generated/index.js +1 -1
  72. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  73. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js +30 -5
  74. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js.map +1 -1
  75. package/test/examples/source-repository/a/dist/parser/types/createClassDeclaration.js +1 -4
  76. package/test/examples/source-repository/a/dist/parser/types/createClassDeclaration.js.map +1 -1
  77. package/test/examples/source-repository/a/dist/runBuild.js +12 -2
  78. package/test/examples/source-repository/a/dist/runBuild.js.map +1 -1
  79. package/test/examples/source-repository/a/generated/index.ts +1 -1
  80. package/test/examples/source-repository/b/dist/BuildContract.d.ts +69 -0
  81. package/test/examples/source-repository/b/dist/BuildContract.js +393 -0
  82. package/test/examples/source-repository/b/dist/BuildContract.js.map +1 -0
  83. package/test/examples/source-repository/b/dist/build.d.ts +5 -1
  84. package/test/examples/source-repository/b/dist/build.js +13 -77
  85. package/test/examples/source-repository/b/dist/build.js.map +1 -1
  86. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +18 -0
  87. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +58 -15
  88. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  89. package/test/examples/source-repository/b/dist/generated/index.js +1 -1
  90. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  91. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js +30 -5
  92. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js.map +1 -1
  93. package/test/examples/source-repository/b/dist/parser/types/createClassDeclaration.js +1 -4
  94. package/test/examples/source-repository/b/dist/parser/types/createClassDeclaration.js.map +1 -1
  95. package/test/examples/source-repository/b/dist/runBuild.js +12 -2
  96. package/test/examples/source-repository/b/dist/runBuild.js.map +1 -1
  97. package/test/examples/source-repository/b/generated/index.ts +1 -1
@@ -62,7 +62,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
62
62
  return (mod && mod.__esModule) ? mod : { "default": mod };
63
63
  };
64
64
  Object.defineProperty(exports, "__esModule", { value: true });
65
- exports.dependencyHasSourceGraph = exports.writeGeneratedIndex = void 0;
65
+ exports.createEmittedSourceGraph = exports.findDependencyDir = exports.findDependencySourceGraph = exports.dependencyHasSourceGraph = exports.writeGeneratedIndex = void 0;
66
66
  var fs = __importStar(require("fs"));
67
67
  var path = __importStar(require("path"));
68
68
  var util_node_1 = require("@proteinjs/util-node");
@@ -143,11 +143,11 @@ function sourceRepositoryLoader(packageDir, generatedIndexPath, sourceRootsRel)
143
143
  packageJson = _a.sent();
144
144
  code = loadDependencySourceGraphs(packageDir, packageJson);
145
145
  roots = Array.isArray(sourceRootsRel) ? sourceRootsRel : [sourceRootsRel];
146
- return [4 /*yield*/, (0, createSourceGraph_1.createSourceGraph)(packageDir, [], roots)];
146
+ return [4 /*yield*/, createEmittedSourceGraph(packageDir, roots)];
147
147
  case 2:
148
148
  sourceGraph = _a.sent();
149
- code += generateSourceGraph(sourceGraph, packageJson.name);
150
- code += generateSourceLinks(sourceGraph, packageJson, generatedIndexPath);
149
+ code += generateSourceGraph(sourceGraph);
150
+ code += generateSourceLinks(sourceGraph, packageJson, packageDir, generatedIndexPath);
151
151
  code += mergeSourceGraph();
152
152
  return [2 /*return*/, code];
153
153
  }
@@ -210,24 +210,43 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
210
210
  * and correct for workspace symlinks (the symlinked package root carries its own dist).
211
211
  */
212
212
  function dependencyHasSourceGraph(packageDir, packageName) {
213
+ return !!findDependencySourceGraph(packageDir, packageName);
214
+ }
215
+ exports.dependencyHasSourceGraph = dependencyHasSourceGraph;
216
+ /**
217
+ * Full path to the dependency's source-graph artifact, or undefined when the dependency is
218
+ * not installed or not reflection-built. Same walk as `dependencyHasSourceGraph`; exposed for
219
+ * static graph harvesting (reflection-doctor).
220
+ */
221
+ function findDependencySourceGraph(packageDir, packageName) {
222
+ var dependencyDir = findDependencyDir(packageDir, packageName);
223
+ if (!dependencyDir) {
224
+ return undefined;
225
+ }
226
+ var artifactPath = path.join(dependencyDir, 'dist', 'generated', 'index.js');
227
+ return fs.existsSync(artifactPath) ? artifactPath : undefined;
228
+ }
229
+ exports.findDependencySourceGraph = findDependencySourceGraph;
230
+ /**
231
+ * The installed location of a dependency, resolved by walking `node_modules` up from the
232
+ * consuming package — npm-layout resolution: the nearest installed copy shadows hoisted ones.
233
+ */
234
+ function findDependencyDir(packageDir, packageName) {
213
235
  var currentDir = packageDir;
214
- // Upward fs walk; exits are internal (found / package root / fs root).
236
+ // Upward fs walk; exits are internal (found / fs root).
215
237
  for (;;) {
216
238
  var candidate = path.join(currentDir, 'node_modules', packageName);
217
- if (fs.existsSync(path.join(candidate, 'dist', 'generated', 'index.js'))) {
218
- return true;
219
- }
220
239
  if (fs.existsSync(candidate)) {
221
- return false;
240
+ return candidate;
222
241
  }
223
242
  var parent_1 = path.dirname(currentDir);
224
243
  if (parent_1 === currentDir) {
225
- return false;
244
+ return undefined;
226
245
  }
227
246
  currentDir = parent_1;
228
247
  }
229
248
  }
230
- exports.dependencyHasSourceGraph = dependencyHasSourceGraph;
249
+ exports.findDependencyDir = findDependencyDir;
231
250
  /**
232
251
  * Determine an import specifier for a dependency that respects its package.json exports or main/module fields.
233
252
  */
@@ -283,8 +302,30 @@ function getDependencyImportSpecifier(packageDir, packageName) {
283
302
  return "".concat(packageName, "/").concat(entryPoint);
284
303
  }
285
304
  }
286
- function generateSourceGraph(sourceGraph, buildTargetPackageName) {
287
- removeNonLoadables(sourceGraph, buildTargetPackageName);
305
+ /**
306
+ * The graph exactly as a build emits it: parsed from the package's source roots, with
307
+ * build-time-non-loadable declarations pruned. Owned here so build emit and diagnostic
308
+ * tooling (reflection-doctor drift checks) share one pipeline.
309
+ */
310
+ function createEmittedSourceGraph(packageDir, sourceRootsRel) {
311
+ return __awaiter(this, void 0, void 0, function () {
312
+ var packageJson, sourceGraph;
313
+ return __generator(this, function (_a) {
314
+ switch (_a.label) {
315
+ case 0: return [4 /*yield*/, getPackageJson(packageDir)];
316
+ case 1:
317
+ packageJson = _a.sent();
318
+ return [4 /*yield*/, (0, createSourceGraph_1.createSourceGraph)(packageDir, [], sourceRootsRel)];
319
+ case 2:
320
+ sourceGraph = _a.sent();
321
+ removeNonLoadables(sourceGraph, packageJson.name);
322
+ return [2 /*return*/, sourceGraph];
323
+ }
324
+ });
325
+ });
326
+ }
327
+ exports.createEmittedSourceGraph = createEmittedSourceGraph;
328
+ function generateSourceGraph(sourceGraph) {
288
329
  var code = "\n\n/** Generate Source Graph */\n\n";
289
330
  var serializedSourceGraph = util_1.graphSerializer.serialize(sourceGraph);
290
331
  var doubleEscapedSerializedSourceGraph = (0, jsesc_1.default)(serializedSourceGraph, { json: true }); // since we write to file, need to escape a second time
@@ -349,7 +390,7 @@ function removeNonLoadableNode(packageScope, buildTargetPackageName, sourceGraph
349
390
  }
350
391
  return shouldRemove;
351
392
  }
352
- function generateSourceLinks(sourceGraph, packageJson, generatedIndexPath) {
393
+ function generateSourceLinks(sourceGraph, packageJson, packageDir, generatedIndexPath) {
353
394
  var code = "\n\n/** Generate Source Links */\n\n";
354
395
  var linkableNodes = [];
355
396
  for (var _i = 0, _a = sourceGraph.nodes(); _i < _a.length; _i++) {
@@ -367,7 +408,9 @@ function generateSourceLinks(sourceGraph, packageJson, generatedIndexPath) {
367
408
  if (!node.filePath) {
368
409
  continue;
369
410
  }
370
- var relativeImportPath = path.relative(path.dirname(generatedIndexPath), node.filePath);
411
+ // node.filePath is package-relative (never serialized absolute); resolve against the
412
+ // package dir to compute the real import location for the generated index.
413
+ var relativeImportPath = path.relative(path.dirname(generatedIndexPath), path.join(packageDir, node.filePath));
371
414
  code += "import { ".concat(node.name, " } from '").concat(relativeImportPath.replace(/\.[^/.]+$/, ''), "';\n");
372
415
  linkableNodes.push(node);
373
416
  }
@@ -1 +1 @@
1
- {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"writeGeneratedIndex.js","sourceRoot":"","sources":["../../../../../../src/codegen/writeGeneratedIndex.ts"],"names":[],"mappings":"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"}
@@ -17,7 +17,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  require("@proteinjs/reflection-build-test-b");
19
19
  /** Generate Source Graph */
20
- var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsNotLoadableForeignType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalNotLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalNotLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalNotLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: string }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableTypeWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"type\":{\"packageName\":\"\",\"name\":\"LocalLoadableTypeWithArgs<LocalLoadableType>\",\"filePath\":null,\"qualifiedName\":\"/LocalLoadableTypeWithArgs<LocalLoadableType>\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableType\"],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: number }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ b: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ b: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLocalLoadableType\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterfaceWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClassWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableInterface\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableAbstractClass\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/Loadable\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"TypeFilter\",\"filePath\":\"/home/runner/work/reflection/reflection/packages/reflection-build/test/examples/source-repository/a/src/TypeFilter.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"blocklist\",\"type\":{\"packageName\":\"\",\"name\":\"string[]\",\"filePath\":null,\"qualifiedName\":\"/string[]\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"private\"}],\"methods\":[{\"name\":\"filterObject\",\"returnType\":{\"packageName\":\"\",\"name\":\"boolean\",\"filePath\":null,\"qualifiedName\":\"/boolean\",\"typeParameters\":null,\"directParents\":null},\"isAsync\":false,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"parameters\":[{\"name\":\"qualifiedName\",\"type\":{\"packageName\":\"\",\"name\":\"string\",\"filePath\":null,\"qualifiedName\":\"/string\",\"typeParameters\":null,\"directParents\":null}}]}],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"SourceRepositoryFilter\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/SourceRepositoryFilter\"}],\"edges\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"w\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"value\":\"implements interface\"}]}";
20
+ var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalNotLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalNotLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalNotLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: string }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableTypeWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"type\":{\"packageName\":\"\",\"name\":\"LocalLoadableTypeWithArgs<LocalLoadableType>\",\"filePath\":null,\"qualifiedName\":\"/LocalLoadableTypeWithArgs<LocalLoadableType>\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableType\"],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: number }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ b: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ b: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterfaceWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterfaceWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClassWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/Loadable\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"TypeFilter\",\"filePath\":\"src/TypeFilter.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"blocklist\",\"type\":{\"packageName\":\"\",\"name\":\"string[]\",\"filePath\":null,\"qualifiedName\":\"/string[]\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"private\"}],\"methods\":[{\"name\":\"filterObject\",\"returnType\":{\"packageName\":\"\",\"name\":\"boolean\",\"filePath\":null,\"qualifiedName\":\"/boolean\",\"typeParameters\":null,\"directParents\":null},\"isAsync\":false,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"parameters\":[{\"name\":\"qualifiedName\",\"type\":{\"packageName\":\"\",\"name\":\"string\",\"filePath\":null,\"qualifiedName\":\"/string\",\"typeParameters\":null,\"directParents\":null}}]}],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"SourceRepositoryFilter\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/SourceRepositoryFilter\"}],\"edges\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"w\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"value\":\"implements interface\"}]}";
21
21
  /** Generate Source Links */
22
22
  var ExtendsForeignType_1 = require("../src/ExtendsForeignType");
23
23
  var ExtendsForeignType_2 = require("../src/ExtendsForeignType");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,8CAA4C;AAG5C,4BAA4B;AAE5B,IAAM,WAAW,GAAG,8y+CAA8y+C,CAAC;AAGn0+C,4BAA4B;AAE5B,gEAA0E;AAC1E,gEAA6E;AAC7E,gEAAiF;AACjF,gEAAoF;AACpF,gEAA+E;AAC/E,gEAAkF;AAClF,gEAAmF;AACnF,gEAAsF;AACtF,gEAAsF;AACtF,4DAAqF;AACrF,iEAAgF;AAChF,iEAA0F;AAC1F,iEAAmF;AACnF,iEAA6F;AAC7F,4DAAsE;AACtE,4DAA8E;AAC9E,4DAA6E;AAC7E,4DAA2E;AAC3E,4DAAmF;AACnF,4DAA+E;AAC/E,8DAAsE;AACtE,4DAAuF;AACvF,8DAA8E;AAC9E,4DAAkF;AAClF,6DAA4E;AAC5E,6DAAsF;AACtF,gDAA+C;AAE/C,IAAM,WAAW,GAAG;IACnB,kEAAkE,EAAE,kDAA6B;IACjG,qEAAqE,EAAE,qDAAgC;IACvG,yEAAyE,EAAE,yDAAoC;IAC/G,4EAA4E,EAAE,4DAAuC;IACrH,uEAAuE,EAAE,uDAAkC;IAC3G,0EAA0E,EAAE,0DAAqC;IACjH,2EAA2E,EAAE,2DAAsC;IACnH,8EAA8E,EAAE,8DAAyC;IACzH,8EAA8E,EAAE,8DAAyC;IACzH,+EAA+E,EAAE,6DAA0C;IAC3H,wEAAwE,EAAE,yDAAmC;IAC7G,kFAAkF,EAAE,mEAA6C;IACjI,2EAA2E,EAAE,4DAAsC;IACnH,qFAAqF,EAAE,sEAAgD;IACvI,gEAAgE,EAAE,8CAA2B;IAC7F,wEAAwE,EAAE,sDAAmC;IAC7G,uEAAuE,EAAE,qDAAkC;IAC3G,qEAAqE,EAAE,mDAAgC;IACvG,6EAA6E,EAAE,2DAAwC;IACvH,yEAAyE,EAAE,uDAAoC;IAC/G,+DAA+D,EAAE,8CAA0B;IAC3F,iFAAiF,EAAE,+DAA4C;IAC/H,uEAAuE,EAAE,sDAAkC;IAC3G,4EAA4E,EAAE,0DAAuC;IACrH,sEAAsE,EAAE,qDAAiC;IACzG,gFAAgF,EAAE,+DAA2C;IAC7H,+CAA+C,EAAE,uBAAU;CAC3D,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,8CAA4C;AAG5C,4BAA4B;AAE5B,IAAM,WAAW,GAAG,il3CAAil3C,CAAC;AAGtm3C,4BAA4B;AAE5B,gEAA0E;AAC1E,gEAA6E;AAC7E,gEAAiF;AACjF,gEAAoF;AACpF,gEAA+E;AAC/E,gEAAkF;AAClF,gEAAmF;AACnF,gEAAsF;AACtF,gEAAsF;AACtF,4DAAqF;AACrF,iEAAgF;AAChF,iEAA0F;AAC1F,iEAAmF;AACnF,iEAA6F;AAC7F,4DAAsE;AACtE,4DAA8E;AAC9E,4DAA6E;AAC7E,4DAA2E;AAC3E,4DAAmF;AACnF,4DAA+E;AAC/E,8DAAsE;AACtE,4DAAuF;AACvF,8DAA8E;AAC9E,4DAAkF;AAClF,6DAA4E;AAC5E,6DAAsF;AACtF,gDAA+C;AAE/C,IAAM,WAAW,GAAG;IACnB,kEAAkE,EAAE,kDAA6B;IACjG,qEAAqE,EAAE,qDAAgC;IACvG,yEAAyE,EAAE,yDAAoC;IAC/G,4EAA4E,EAAE,4DAAuC;IACrH,uEAAuE,EAAE,uDAAkC;IAC3G,0EAA0E,EAAE,0DAAqC;IACjH,2EAA2E,EAAE,2DAAsC;IACnH,8EAA8E,EAAE,8DAAyC;IACzH,8EAA8E,EAAE,8DAAyC;IACzH,+EAA+E,EAAE,6DAA0C;IAC3H,wEAAwE,EAAE,yDAAmC;IAC7G,kFAAkF,EAAE,mEAA6C;IACjI,2EAA2E,EAAE,4DAAsC;IACnH,qFAAqF,EAAE,sEAAgD;IACvI,gEAAgE,EAAE,8CAA2B;IAC7F,wEAAwE,EAAE,sDAAmC;IAC7G,uEAAuE,EAAE,qDAAkC;IAC3G,qEAAqE,EAAE,mDAAgC;IACvG,6EAA6E,EAAE,2DAAwC;IACvH,yEAAyE,EAAE,uDAAoC;IAC/G,+DAA+D,EAAE,8CAA0B;IAC3F,iFAAiF,EAAE,+DAA4C;IAC/H,uEAAuE,EAAE,sDAAkC;IAC3G,4EAA4E,EAAE,0DAAuC;IACrH,sEAAsE,EAAE,qDAAiC;IACzG,gFAAgF,EAAE,+DAA2C;IAC7H,+CAA+C,EAAE,uBAAU;CAC3D,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}
@@ -1,4 +1,27 @@
1
1
  "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
2
25
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
26
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
27
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -37,6 +60,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
37
60
  };
38
61
  Object.defineProperty(exports, "__esModule", { value: true });
39
62
  exports.createGraphBuilder = void 0;
63
+ var path = __importStar(require("path"));
40
64
  var typescript_parser_1 = require("../../modules/typescript-parser");
41
65
  var reflection_1 = require("@proteinjs/reflection");
42
66
  var util_1 = require("@proteinjs/util");
@@ -49,10 +73,11 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
49
73
  var _this = this;
50
74
  var packageName = packageJson.name;
51
75
  return function (parsedFile) { return __awaiter(_this, void 0, void 0, function () {
52
- var _i, _a, declaration, packageNameFinder, variableDeclaration, typeAliasDeclaration, classDeclaration, _b, _c, parentInterface, _d, _e, parentClass, interfaceDeclaration, _f, _g, parentInterface;
76
+ var filePath, _i, _a, declaration, packageNameFinder, variableDeclaration, typeAliasDeclaration, classDeclaration, _b, _c, parentInterface, _d, _e, parentClass, interfaceDeclaration, _f, _g, parentInterface;
53
77
  return __generator(this, function (_h) {
54
78
  switch (_h.label) {
55
79
  case 0:
80
+ filePath = path.relative(packageJsonDir, parsedFile.filePath);
56
81
  _i = 0, _a = parsedFile.declarations;
57
82
  _h.label = 1;
58
83
  case 1:
@@ -66,7 +91,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
66
91
  }
67
92
  packageNameFinder = new PackageNameFinder_1.PackageNameFinder(parsedFile, packageJsonDir, packageName);
68
93
  if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.VariableDeclaration)) return [3 /*break*/, 3];
69
- return [4 /*yield*/, (0, createVariableDeclaration_1.createVariableDeclaration)(declaration, packageNameFinder, parsedFile.filePath)];
94
+ return [4 /*yield*/, (0, createVariableDeclaration_1.createVariableDeclaration)(declaration, packageNameFinder, filePath)];
70
95
  case 2:
71
96
  variableDeclaration = _h.sent();
72
97
  graph.setNode(variableDeclaration.qualifiedName, Object.assign(variableDeclaration, { sourceType: reflection_1.SourceType.variable }));
@@ -74,7 +99,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
74
99
  return [3 /*break*/, 9];
75
100
  case 3:
76
101
  if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.TypeAliasDeclaration)) return [3 /*break*/, 5];
77
- return [4 /*yield*/, (0, createTypeAliasDeclaration_1.createTypeAliasDeclaration)(declaration, packageNameFinder, parsedFile.filePath)];
102
+ return [4 /*yield*/, (0, createTypeAliasDeclaration_1.createTypeAliasDeclaration)(declaration, packageNameFinder, filePath)];
78
103
  case 4:
79
104
  typeAliasDeclaration = _h.sent();
80
105
  graph.setNode(typeAliasDeclaration.qualifiedName, Object.assign(typeAliasDeclaration, { sourceType: reflection_1.SourceType.typeAlias }));
@@ -82,7 +107,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
82
107
  return [3 /*break*/, 9];
83
108
  case 5:
84
109
  if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.ClassDeclaration)) return [3 /*break*/, 7];
85
- return [4 /*yield*/, (0, createClassDeclaration_1.createClassDeclaration)(declaration, packageNameFinder, parsedFile.filePath)];
110
+ return [4 /*yield*/, (0, createClassDeclaration_1.createClassDeclaration)(declaration, packageNameFinder, filePath)];
86
111
  case 6:
87
112
  classDeclaration = _h.sent();
88
113
  graph.setNode(classDeclaration.qualifiedName, Object.assign(classDeclaration, { sourceType: reflection_1.SourceType.class }));
@@ -109,7 +134,7 @@ function createGraphBuilder(graph, packageJson, packageJsonDir) {
109
134
  return [3 /*break*/, 9];
110
135
  case 7:
111
136
  if (!(0, util_1.isInstanceOf)(declaration, typescript_parser_1.InterfaceDeclaration)) return [3 /*break*/, 9];
112
- return [4 /*yield*/, (0, createInterfaceDeclaration_1.createInterfaceDeclaration)(declaration, packageNameFinder, parsedFile.filePath)];
137
+ return [4 /*yield*/, (0, createInterfaceDeclaration_1.createInterfaceDeclaration)(declaration, packageNameFinder, filePath)];
113
138
  case 8:
114
139
  interfaceDeclaration = _h.sent();
115
140
  graph.setNode(interfaceDeclaration.qualifiedName, Object.assign(interfaceDeclaration, { sourceType: reflection_1.SourceType.interface }));