@proteinjs/reflection-build 1.4.12 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (88) hide show
  1. package/CHANGELOG.md +45 -0
  2. package/dist/src/BuildContract.d.ts +69 -0
  3. package/dist/src/BuildContract.js +393 -0
  4. package/dist/src/BuildContract.js.map +1 -0
  5. package/dist/src/ReflectionDoctor.d.ts +95 -0
  6. package/dist/src/ReflectionDoctor.js +588 -0
  7. package/dist/src/ReflectionDoctor.js.map +1 -0
  8. package/dist/src/build.d.ts +5 -1
  9. package/dist/src/build.js +13 -77
  10. package/dist/src/build.js.map +1 -1
  11. package/dist/src/codegen/writeGeneratedIndex.d.ts +25 -0
  12. package/dist/src/codegen/writeGeneratedIndex.js +89 -13
  13. package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
  14. package/dist/src/parser/createGraphBuilder.js +30 -5
  15. package/dist/src/parser/createGraphBuilder.js.map +1 -1
  16. package/dist/src/runBuild.js +12 -2
  17. package/dist/src/runBuild.js.map +1 -1
  18. package/dist/src/runDoctor.d.ts +2 -0
  19. package/dist/src/runDoctor.js +83 -0
  20. package/dist/src/runDoctor.js.map +1 -0
  21. package/dist/test/DependencySourceGraphGate.test.d.ts +1 -0
  22. package/dist/test/DependencySourceGraphGate.test.js +78 -0
  23. package/dist/test/DependencySourceGraphGate.test.js.map +1 -0
  24. package/dist/test/GraphEmitRelativePaths.test.d.ts +1 -0
  25. package/dist/test/GraphEmitRelativePaths.test.js +162 -0
  26. package/dist/test/GraphEmitRelativePaths.test.js.map +1 -0
  27. package/dist/test/ReflectionDoctor.test.d.ts +1 -0
  28. package/dist/test/ReflectionDoctor.test.js +316 -0
  29. package/dist/test/ReflectionDoctor.test.js.map +1 -0
  30. package/dist/test/TestSubpathContract.test.d.ts +1 -0
  31. package/dist/test/TestSubpathContract.test.js +260 -0
  32. package/dist/test/TestSubpathContract.test.js.map +1 -0
  33. package/dist/test/ValidateDontMutate.test.d.ts +1 -0
  34. package/dist/test/ValidateDontMutate.test.js +238 -0
  35. package/dist/test/ValidateDontMutate.test.js.map +1 -0
  36. package/dist/test/examples/source-repository/a/generated/index.d.ts +0 -8
  37. package/dist/test/examples/source-repository/a/generated/index.js +1 -9
  38. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  39. package/dist/test/examples/source-repository/b/generated/index.d.ts +0 -8
  40. package/dist/test/examples/source-repository/b/generated/index.js +1 -9
  41. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  42. package/package.json +5 -4
  43. package/src/BuildContract.ts +384 -0
  44. package/src/ReflectionDoctor.ts +589 -0
  45. package/src/build.ts +19 -56
  46. package/src/codegen/writeGeneratedIndex.ts +80 -9
  47. package/src/parser/createGraphBuilder.ts +9 -4
  48. package/src/runBuild.ts +7 -1
  49. package/src/runDoctor.ts +34 -0
  50. package/test/DependencySourceGraphGate.test.ts +61 -0
  51. package/test/GraphEmitRelativePaths.test.ts +95 -0
  52. package/test/ReflectionDoctor.test.ts +193 -0
  53. package/test/TestSubpathContract.test.ts +148 -0
  54. package/test/ValidateDontMutate.test.ts +126 -0
  55. package/test/examples/source-repository/a/dist/BuildContract.d.ts +69 -0
  56. package/test/examples/source-repository/a/dist/BuildContract.js +393 -0
  57. package/test/examples/source-repository/a/dist/BuildContract.js.map +1 -0
  58. package/test/examples/source-repository/a/dist/build.d.ts +5 -1
  59. package/test/examples/source-repository/a/dist/build.js +13 -77
  60. package/test/examples/source-repository/a/dist/build.js.map +1 -1
  61. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +25 -0
  62. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +89 -13
  63. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
  64. package/test/examples/source-repository/a/dist/generated/index.d.ts +0 -8
  65. package/test/examples/source-repository/a/dist/generated/index.js +1 -9
  66. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  67. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js +30 -5
  68. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js.map +1 -1
  69. package/test/examples/source-repository/a/dist/runBuild.js +12 -2
  70. package/test/examples/source-repository/a/dist/runBuild.js.map +1 -1
  71. package/test/examples/source-repository/a/generated/index.ts +1 -9
  72. package/test/examples/source-repository/b/dist/BuildContract.d.ts +69 -0
  73. package/test/examples/source-repository/b/dist/BuildContract.js +393 -0
  74. package/test/examples/source-repository/b/dist/BuildContract.js.map +1 -0
  75. package/test/examples/source-repository/b/dist/build.d.ts +5 -1
  76. package/test/examples/source-repository/b/dist/build.js +13 -77
  77. package/test/examples/source-repository/b/dist/build.js.map +1 -1
  78. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +25 -0
  79. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +89 -13
  80. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  81. package/test/examples/source-repository/b/dist/generated/index.d.ts +0 -8
  82. package/test/examples/source-repository/b/dist/generated/index.js +1 -9
  83. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  84. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js +30 -5
  85. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js.map +1 -1
  86. package/test/examples/source-repository/b/dist/runBuild.js +12 -2
  87. package/test/examples/source-repository/b/dist/runBuild.js.map +1 -1
  88. package/test/examples/source-repository/b/generated/index.ts +1 -10
@@ -62,7 +62,8 @@ 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.writeGeneratedIndex = void 0;
65
+ exports.createEmittedSourceGraph = exports.findDependencyDir = exports.findDependencySourceGraph = exports.dependencyHasSourceGraph = exports.writeGeneratedIndex = void 0;
66
+ var fs = __importStar(require("fs"));
66
67
  var path = __importStar(require("path"));
67
68
  var util_node_1 = require("@proteinjs/util-node");
68
69
  var util_1 = require("@proteinjs/util");
@@ -142,11 +143,11 @@ function sourceRepositoryLoader(packageDir, generatedIndexPath, sourceRootsRel)
142
143
  packageJson = _a.sent();
143
144
  code = loadDependencySourceGraphs(packageDir, packageJson);
144
145
  roots = Array.isArray(sourceRootsRel) ? sourceRootsRel : [sourceRootsRel];
145
- return [4 /*yield*/, (0, createSourceGraph_1.createSourceGraph)(packageDir, [], roots)];
146
+ return [4 /*yield*/, createEmittedSourceGraph(packageDir, roots)];
146
147
  case 2:
147
148
  sourceGraph = _a.sent();
148
- code += generateSourceGraph(sourceGraph, packageJson.name);
149
- code += generateSourceLinks(sourceGraph, packageJson, generatedIndexPath);
149
+ code += generateSourceGraph(sourceGraph);
150
+ code += generateSourceLinks(sourceGraph, packageJson, packageDir, generatedIndexPath);
150
151
  code += mergeSourceGraph();
151
152
  return [2 /*return*/, code];
152
153
  }
@@ -179,11 +180,18 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
179
180
  .filter(Boolean);
180
181
  if (packageJson.dependencies) {
181
182
  for (var packageName in packageJson.dependencies) {
182
- // Skip any packages listed in SKIP_REFLECTION_LOAD
183
+ // Skip any packages listed in SKIP_REFLECTION_LOAD (deliberate opt-out for deps that
184
+ // DO carry a graph but should not load in this package's context)
183
185
  if (skipList.includes(packageName)) {
184
186
  continue;
185
187
  }
186
- if (packageName.startsWith('@material-ui')) {
188
+ // Only reflection-built dependencies belong here: the import exists solely to run the
189
+ // dependency's generated index (SourceRepository.merge of its source graph). A dep is
190
+ // reflection-built iff it ships the artifact this same codegen emits —
191
+ // dist/generated/index.js. Everything else (icon sets, ui libs, utilities) contributed
192
+ // nothing at runtime while pinning its entire dependency root into every consumer's
193
+ // bundle (observed: ~19 duplicate FontAwesome set copies across the app bundle).
194
+ if (!dependencyHasSourceGraph(packageDir, packageName)) {
187
195
  continue;
188
196
  }
189
197
  var specifier = getDependencyImportSpecifier(packageDir, packageName);
@@ -195,6 +203,50 @@ function loadDependencySourceGraphs(packageDir, packageJson) {
195
203
  }
196
204
  return code;
197
205
  }
206
+ /**
207
+ * True iff the dependency ships a reflection source graph (`dist/generated/index.js`, the
208
+ * artifact `writeGeneratedIndex` itself emits). Located by walking `node_modules` up from the
209
+ * consuming package — the npm layout lookup, immune to `exports`-map resolution restrictions
210
+ * and correct for workspace symlinks (the symlinked package root carries its own dist).
211
+ */
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) {
235
+ var currentDir = packageDir;
236
+ // Upward fs walk; exits are internal (found / fs root).
237
+ for (;;) {
238
+ var candidate = path.join(currentDir, 'node_modules', packageName);
239
+ if (fs.existsSync(candidate)) {
240
+ return candidate;
241
+ }
242
+ var parent_1 = path.dirname(currentDir);
243
+ if (parent_1 === currentDir) {
244
+ return undefined;
245
+ }
246
+ currentDir = parent_1;
247
+ }
248
+ }
249
+ exports.findDependencyDir = findDependencyDir;
198
250
  /**
199
251
  * Determine an import specifier for a dependency that respects its package.json exports or main/module fields.
200
252
  */
@@ -250,8 +302,30 @@ function getDependencyImportSpecifier(packageDir, packageName) {
250
302
  return "".concat(packageName, "/").concat(entryPoint);
251
303
  }
252
304
  }
253
- function generateSourceGraph(sourceGraph, buildTargetPackageName) {
254
- 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) {
255
329
  var code = "\n\n/** Generate Source Graph */\n\n";
256
330
  var serializedSourceGraph = util_1.graphSerializer.serialize(sourceGraph);
257
331
  var doubleEscapedSerializedSourceGraph = (0, jsesc_1.default)(serializedSourceGraph, { json: true }); // since we write to file, need to escape a second time
@@ -303,11 +377,11 @@ function removeNonLoadableNode(packageScope, buildTargetPackageName, sourceGraph
303
377
  shouldRemove = false;
304
378
  continue;
305
379
  }
306
- var parent_1 = sourceGraph.node(outEdge.w);
307
- if (!parent_1) {
380
+ var parent_2 = sourceGraph.node(outEdge.w);
381
+ if (!parent_2) {
308
382
  continue;
309
383
  }
310
- if (!removeNonLoadableNode(parent_1, buildTargetPackageName, sourceGraph)) {
384
+ if (!removeNonLoadableNode(parent_2, buildTargetPackageName, sourceGraph)) {
311
385
  shouldRemove = false;
312
386
  }
313
387
  }
@@ -316,7 +390,7 @@ function removeNonLoadableNode(packageScope, buildTargetPackageName, sourceGraph
316
390
  }
317
391
  return shouldRemove;
318
392
  }
319
- function generateSourceLinks(sourceGraph, packageJson, generatedIndexPath) {
393
+ function generateSourceLinks(sourceGraph, packageJson, packageDir, generatedIndexPath) {
320
394
  var code = "\n\n/** Generate Source Links */\n\n";
321
395
  var linkableNodes = [];
322
396
  for (var _i = 0, _a = sourceGraph.nodes(); _i < _a.length; _i++) {
@@ -334,7 +408,9 @@ function generateSourceLinks(sourceGraph, packageJson, generatedIndexPath) {
334
408
  if (!node.filePath) {
335
409
  continue;
336
410
  }
337
- 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));
338
414
  code += "import { ".concat(node.name, " } from '").concat(relativeImportPath.replace(/\.[^/.]+$/, ''), "';\n");
339
415
  linkableNodes.push(node);
340
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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"}
@@ -1,11 +1,3 @@
1
1
  /** Load Dependency Source Graphs */
2
- import '@dagrejs/graphlib';
3
- import '@proteinjs/reflection';
4
2
  import '@proteinjs/reflection-build-test-b';
5
- import '@proteinjs/util';
6
- import '@proteinjs/util-node';
7
- import 'globby';
8
- import 'gulp';
9
- import 'gulp-shell';
10
- import 'jsesc';
11
3
  export * from '../index';
@@ -15,17 +15,9 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
16
16
  };
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
- require("@dagrejs/graphlib");
19
- require("@proteinjs/reflection");
20
18
  require("@proteinjs/reflection-build-test-b");
21
- require("@proteinjs/util");
22
- require("@proteinjs/util-node");
23
- require("globby");
24
- require("gulp");
25
- require("gulp-shell");
26
- require("jsesc");
27
19
  /** Generate Source Graph */
28
- 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\":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\":\"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\":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\":\"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\":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\":\"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\":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\":\"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\":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\":\"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\"}]}";
29
21
  /** Generate Source Links */
30
22
  var ExtendsForeignType_1 = require("../src/ExtendsForeignType");
31
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,6BAA2B;AAC3B,iCAA+B;AAC/B,8CAA4C;AAC5C,2BAAyB;AACzB,gCAA8B;AAC9B,kBAAgB;AAChB,gBAAc;AACd,sBAAoB;AACpB,iBAAe;AAGf,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,sl3CAAsl3C,CAAC;AAG3m3C,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"}