@proteinjs/reflection-build 2.0.0 → 2.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/modules/typescript-parser/declarations/ClassDeclaration.d.ts +1 -0
  3. package/dist/modules/typescript-parser/declarations/ClassDeclaration.js +1 -0
  4. package/dist/modules/typescript-parser/node-parser/class-parser.js +6 -0
  5. package/dist/src/parser/types/createClassDeclaration.js +1 -4
  6. package/dist/src/parser/types/createClassDeclaration.js.map +1 -1
  7. package/dist/test/AbstractClassDeclaration.test.d.ts +1 -0
  8. package/dist/test/AbstractClassDeclaration.test.js +121 -0
  9. package/dist/test/AbstractClassDeclaration.test.js.map +1 -0
  10. package/dist/test/examples/source-repository/a/generated/index.js +1 -1
  11. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  12. package/dist/test/examples/source-repository/b/generated/index.js +1 -1
  13. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  14. package/modules/typescript-parser/declarations/ClassDeclaration.d.ts +1 -0
  15. package/modules/typescript-parser/declarations/ClassDeclaration.js +1 -0
  16. package/modules/typescript-parser/node-parser/class-parser.js +6 -0
  17. package/package.json +3 -3
  18. package/src/parser/types/createClassDeclaration.ts +5 -5
  19. package/test/AbstractClassDeclaration.test.ts +97 -0
  20. package/test/examples/source-repository/a/dist/generated/index.js +1 -1
  21. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  22. package/test/examples/source-repository/a/dist/parser/types/createClassDeclaration.js +1 -4
  23. package/test/examples/source-repository/a/dist/parser/types/createClassDeclaration.js.map +1 -1
  24. package/test/examples/source-repository/a/generated/index.ts +1 -1
  25. package/test/examples/source-repository/b/dist/generated/index.js +1 -1
  26. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  27. package/test/examples/source-repository/b/dist/parser/types/createClassDeclaration.js +1 -4
  28. package/test/examples/source-repository/b/dist/parser/types/createClassDeclaration.js.map +1 -1
  29. package/test/examples/source-repository/b/generated/index.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [2.0.1](https://github.com/proteinjs/reflection/compare/@proteinjs/reflection-build@2.0.0...@proteinjs/reflection-build@2.0.1) (2026-08-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * never instantiate abstract classes from objects(); stamp class-level isAbstract in the parser ([b971030](https://github.com/proteinjs/reflection/commit/b971030f42b8660cc2f0688848ecfe8599ca1dcf))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.0.0](https://github.com/proteinjs/reflection/compare/@proteinjs/reflection-build@1.5.0...@proteinjs/reflection-build@2.0.0) (2026-08-18)
7
18
 
8
19
 
@@ -18,6 +18,7 @@ export declare class ClassDeclaration implements ClassLikeDeclaration, Exportabl
18
18
  start?: number | undefined;
19
19
  end?: number | undefined;
20
20
  ctor: ConstructorDeclaration | undefined;
21
+ isAbstract: boolean;
21
22
  accessors: AccessorDeclaration[];
22
23
  properties: PropertyDeclaration[];
23
24
  methods: MethodDeclaration[];
@@ -16,6 +16,7 @@ class ClassDeclaration {
16
16
  this.isExported = isExported;
17
17
  this.start = start;
18
18
  this.end = end;
19
+ this.isAbstract = false;
19
20
  this.accessors = [];
20
21
  this.properties = [];
21
22
  this.methods = [];
@@ -78,6 +78,12 @@ exports.parseCtorParams = parseCtorParams;
78
78
  function parseClass(tsResource, node) {
79
79
  const name = node.name ? node.name.text : parse_utilities_1.getDefaultResourceIdentifier(tsResource);
80
80
  const classDeclaration = new ClassDeclaration_1.ClassDeclaration(name, parse_utilities_1.isNodeExported(node), node.getStart(), node.getEnd());
81
+ // The class-level `abstract` keyword lives in the class node's own modifiers — member scans
82
+ // (abstract accessors/methods/properties) are NOT a substitute: an abstract class need not
83
+ // declare any abstract member, and consumers (reflection's SourceRepository) must know the
84
+ // class itself is not instantiable.
85
+ classDeclaration.isAbstract =
86
+ node.modifiers !== undefined && node.modifiers.some(m => m.kind === typescript_1.SyntaxKind.AbstractKeyword);
81
87
  if (parse_utilities_1.isNodeDefaultExported(node)) {
82
88
  classDeclaration.isExported = false;
83
89
  tsResource.declarations.push(new DefaultDeclaration_1.DefaultDeclaration(classDeclaration.name, tsResource));
@@ -46,14 +46,11 @@ function createClassDeclaration(parserClassDeclaration, packageNameFinder, fileP
46
46
  return __generator(this, function (_5) {
47
47
  switch (_5.label) {
48
48
  case 0:
49
- isAbstract = false;
49
+ isAbstract = parserClassDeclaration.isAbstract;
50
50
  isStatic = false;
51
51
  visibility = 'public';
52
52
  for (_i = 0, _a = parserClassDeclaration.accessors; _i < _a.length; _i++) {
53
53
  accessor = _a[_i];
54
- if (accessor.isAbstract) {
55
- isAbstract = true;
56
- }
57
54
  if (accessor.isStatic) {
58
55
  isStatic = true;
59
56
  }
@@ -1 +1 @@
1
- {"version":3,"file":"createClassDeclaration.js","sourceRoot":"","sources":["../../../../src/parser/types/createClassDeclaration.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"createClassDeclaration.js","sourceRoot":"","sources":["../../../../src/parser/types/createClassDeclaration.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,121 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || function (mod) {
19
+ if (mod && mod.__esModule) return mod;
20
+ var result = {};
21
+ if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
22
+ __setModuleDefault(result, mod);
23
+ return result;
24
+ };
25
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
26
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
27
+ return new (P || (P = Promise))(function (resolve, reject) {
28
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
29
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
30
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
31
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
32
+ });
33
+ };
34
+ var __generator = (this && this.__generator) || function (thisArg, body) {
35
+ var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
36
+ return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
37
+ function verb(n) { return function (v) { return step([n, v]); }; }
38
+ function step(op) {
39
+ if (f) throw new TypeError("Generator is already executing.");
40
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
41
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
42
+ if (y = 0, t) op = [op[0] & 2, t.value];
43
+ switch (op[0]) {
44
+ case 0: case 1: t = op; break;
45
+ case 4: _.label++; return { value: op[1], done: false };
46
+ case 5: _.label++; y = op[1]; op = [0]; continue;
47
+ case 7: op = _.ops.pop(); _.trys.pop(); continue;
48
+ default:
49
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
50
+ if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
51
+ if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
52
+ if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
53
+ if (t[2]) _.ops.pop();
54
+ _.trys.pop(); continue;
55
+ }
56
+ op = body.call(thisArg, _);
57
+ } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
58
+ if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
59
+ }
60
+ };
61
+ Object.defineProperty(exports, "__esModule", { value: true });
62
+ var fs = __importStar(require("fs"));
63
+ var os = __importStar(require("os"));
64
+ var path = __importStar(require("path"));
65
+ var createSourceGraph_1 = require("../src/parser/createSourceGraph");
66
+ /**
67
+ * The parser must stamp `isAbstract: true` on a class declared `abstract` — the runtime's
68
+ * only defense against instantiating an abstract class (`objects()` filters on it) is this flag.
69
+ *
70
+ * The real-world mis-stamp (2026-08-21): `MachineAccount`, an `export abstract class` with
71
+ * generics implementing an interface, was emitted with `isAbstract: false` into a generated
72
+ * source graph. Root cause: `createClassDeclaration` derived class abstractness by scanning the
73
+ * class's get/set ACCESSORS for the `abstract` modifier — the vendored typescript-parser never
74
+ * recorded the class-level `abstract` keyword at all. Any abstract class without an abstract
75
+ * accessor member (i.e. nearly all of them, MachineAccount included: abstract PROPERTIES plus
76
+ * concrete getters) was stamped concrete.
77
+ */
78
+ var PACKAGE_NAME = '@test/machine-account-shape';
79
+ // Mirrors the real MachineAccount shape: export abstract class, generic interface implemented,
80
+ // abstract properties, concrete get accessors — and NO abstract accessors.
81
+ var MACHINE_ACCOUNT_SHAPE = "\nimport { SourceRecordLoader } from '@proteinjs/db';\nimport { User } from './User';\n\nexport abstract class MachineAccount implements SourceRecordLoader<User> {\n abstract id: string;\n abstract email: string;\n abstract accountName: string;\n abstract roles: string[];\n abstract secretName: string;\n\n get table(): string {\n return 'user';\n }\n\n get record(): SourceRecordLoader<User>['record'] {\n return {} as SourceRecordLoader<User>['record'];\n }\n}\n\nexport class ConcreteMachineAccount extends MachineAccount {\n id = '1';\n email = 'machine@example.com';\n accountName = 'machine';\n roles: string[] = [];\n secretName = 'machine-secret';\n}\n";
82
+ var OTHER_ABSTRACT_SHAPES = "\nexport abstract class PlainAbstract {\n abstract run(): void;\n}\n\nabstract class UnexportedAbstract {\n abstract run(): void;\n}\nexport { UnexportedAbstract };\n";
83
+ describe('parser stamps class-level isAbstract', function () {
84
+ var dir;
85
+ var graph;
86
+ beforeAll(function () { return __awaiter(void 0, void 0, void 0, function () {
87
+ return __generator(this, function (_a) {
88
+ switch (_a.label) {
89
+ case 0:
90
+ dir = fs.mkdtempSync(path.join(os.tmpdir(), 'abstract-class-declaration-'));
91
+ fs.writeFileSync(path.join(dir, 'package.json'), JSON.stringify({ name: PACKAGE_NAME }));
92
+ fs.mkdirSync(path.join(dir, 'src'));
93
+ fs.writeFileSync(path.join(dir, 'src', 'MachineAccount.ts'), MACHINE_ACCOUNT_SHAPE);
94
+ fs.writeFileSync(path.join(dir, 'src', 'OtherAbstractShapes.ts'), OTHER_ABSTRACT_SHAPES);
95
+ return [4 /*yield*/, (0, createSourceGraph_1.createSourceGraph)(dir)];
96
+ case 1:
97
+ graph = _a.sent();
98
+ return [2 /*return*/];
99
+ }
100
+ });
101
+ }); });
102
+ afterAll(function () {
103
+ fs.rmdirSync(dir, { recursive: true });
104
+ });
105
+ test('abstract class with generics implementing an interface (the MachineAccount shape) is stamped isAbstract: true', function () {
106
+ var machineAccount = graph.node("".concat(PACKAGE_NAME, "/MachineAccount"));
107
+ expect(machineAccount).toBeTruthy();
108
+ expect(machineAccount.isAbstract).toBe(true);
109
+ });
110
+ test('plain export abstract class is stamped isAbstract: true', function () {
111
+ var plainAbstract = graph.node("".concat(PACKAGE_NAME, "/PlainAbstract"));
112
+ expect(plainAbstract).toBeTruthy();
113
+ expect(plainAbstract.isAbstract).toBe(true);
114
+ });
115
+ test('concrete subclass is stamped isAbstract: false', function () {
116
+ var concrete = graph.node("".concat(PACKAGE_NAME, "/ConcreteMachineAccount"));
117
+ expect(concrete).toBeTruthy();
118
+ expect(concrete.isAbstract).toBe(false);
119
+ });
120
+ });
121
+ //# sourceMappingURL=AbstractClassDeclaration.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AbstractClassDeclaration.test.js","sourceRoot":"","sources":["../../test/AbstractClassDeclaration.test.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qCAAyB;AACzB,qCAAyB;AACzB,yCAA6B;AAC7B,qEAAoE;AAEpE;;;;;;;;;;;GAWG;AAEH,IAAM,YAAY,GAAG,6BAA6B,CAAC;AAEnD,+FAA+F;AAC/F,2EAA2E;AAC3E,IAAM,qBAAqB,GAAG,2qBA2B7B,CAAC;AAEF,IAAM,qBAAqB,GAAG,0KAS7B,CAAC;AAEF,QAAQ,CAAC,sCAAsC,EAAE;IAC/C,IAAI,GAAW,CAAC;IAChB,IAAI,KAAU,CAAC;IAEf,SAAS,CAAC;;;;oBACR,GAAG,GAAG,EAAE,CAAC,WAAW,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC,MAAM,EAAE,EAAE,6BAA6B,CAAC,CAAC,CAAC;oBAC5E,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,cAAc,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,EAAE,IAAI,EAAE,YAAY,EAAE,CAAC,CAAC,CAAC;oBACzF,EAAE,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,CAAC,CAAC,CAAC;oBACpC,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,EAAE,mBAAmB,CAAC,EAAE,qBAAqB,CAAC,CAAC;oBACpF,EAAE,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE,KAAK,EAAE,wBAAwB,CAAC,EAAE,qBAAqB,CAAC,CAAC;oBACjF,qBAAM,IAAA,qCAAiB,EAAC,GAAG,CAAC,EAAA;;oBAApC,KAAK,GAAG,SAA4B,CAAC;;;;SACtC,CAAC,CAAC;IAEH,QAAQ,CAAC;QACP,EAAE,CAAC,SAAS,CAAC,GAAG,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,CAAC;IACzC,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,+GAA+G,EAAE;QACpH,IAAM,cAAc,GAAG,KAAK,CAAC,IAAI,CAAC,UAAG,YAAY,oBAAiB,CAAC,CAAC;QACpE,MAAM,CAAC,cAAc,CAAC,CAAC,UAAU,EAAE,CAAC;QACpC,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC/C,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,yDAAyD,EAAE;QAC9D,IAAM,aAAa,GAAG,KAAK,CAAC,IAAI,CAAC,UAAG,YAAY,mBAAgB,CAAC,CAAC;QAClE,MAAM,CAAC,aAAa,CAAC,CAAC,UAAU,EAAE,CAAC;QACnC,MAAM,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;IAC9C,CAAC,CAAC,CAAC;IAEH,IAAI,CAAC,gDAAgD,EAAE;QACrD,IAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,UAAG,YAAY,4BAAyB,CAAC,CAAC;QACtE,MAAM,CAAC,QAAQ,CAAC,CAAC,UAAU,EAAE,CAAC;QAC9B,MAAM,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;IAC1C,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -17,7 +17,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
17
17
  Object.defineProperty(exports, "__esModule", { value: true });
18
18
  require("@proteinjs/reflection-build-test-b");
19
19
  /** Generate Source Graph */
20
- var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLoadableForeignType\",\"filePath\":\"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\"}]}";
20
+ var sourceGraph = "{\"options\":{\"directed\":true,\"multigraph\":false,\"compound\":false},\"nodes\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ y: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ y: string }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsNotLoadableForeignType\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignInterface\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalNotLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalNotLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalNotLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"LoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-b\",\"name\":\"NotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsNotLoadableForeignAbstractClass\",\"filePath\":\"src/ExtendsForeignType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"y\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"z\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsNotLoadableForeignAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: string }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: string }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsLocalLoadableTypeWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"type\":{\"packageName\":\"\",\"name\":\"LocalLoadableTypeWithArgs<LocalLoadableType>\",\"filePath\":null,\"qualifiedName\":\"/LocalLoadableTypeWithArgs<LocalLoadableType>\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableType\"],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableTypeWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ a: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ a: number }\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"typeParameters\":[],\"directParents\":null},{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"{ b: number }\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/{ b: number }\",\"typeParameters\":[],\"directParents\":null}],\"sourceType\":1}},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"implementsExtendsLocalLoadableType\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"type\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableType\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"typeParameters\":[],\"directParents\":null}]},\"isExported\":true,\"isConst\":true,\"sourceType\":0}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableInterfaceWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParents\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterfaceWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterfaceWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsLocalLoadableAbstractClassWithArgs\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\"],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClassWithArgs\",\"filePath\":\"src/LocalLoadableType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[\"/T\"],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"Loadable\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/Loadable\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParents\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"sourceType\":3}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableInterface\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableInterface\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":true,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"b\",\"type\":{\"packageName\":\"\",\"name\":\"number\",\"filePath\":null,\"qualifiedName\":\"/number\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"LocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ImplementsExtendsLocalLoadableAbstractClass\",\"filePath\":\"src/ExtendsLocalType.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"a\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"},{\"name\":\"b\",\"type\":null,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\"}],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"ExtendsLocalLoadableAbstractClass\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParentInterfaces\":[],\"directParentClasses\":[]}],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/Loadable\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"value\":{\"packageName\":\"@proteinjs/reflection-build-test-a\",\"name\":\"TypeFilter\",\"filePath\":\"src/TypeFilter.ts\",\"qualifiedName\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"properties\":[{\"name\":\"blocklist\",\"type\":{\"packageName\":\"\",\"name\":\"string[]\",\"filePath\":null,\"qualifiedName\":\"/string[]\",\"typeParameters\":null,\"directParents\":null},\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"private\"}],\"methods\":[{\"name\":\"filterObject\",\"returnType\":{\"packageName\":\"\",\"name\":\"boolean\",\"filePath\":null,\"qualifiedName\":\"/boolean\",\"typeParameters\":null,\"directParents\":null},\"isAsync\":false,\"isOptional\":false,\"isAbstract\":false,\"isStatic\":false,\"visibility\":\"public\",\"parameters\":[{\"name\":\"qualifiedName\",\"type\":{\"packageName\":\"\",\"name\":\"string\",\"filePath\":null,\"qualifiedName\":\"/string\",\"typeParameters\":null,\"directParents\":null}}]}],\"typeParameters\":[],\"directParentInterfaces\":[{\"packageName\":\"@proteinjs/reflection\",\"name\":\"SourceRepositoryFilter\",\"filePath\":null,\"qualifiedName\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"properties\":[],\"methods\":[],\"typeParameters\":[],\"directParents\":[]}],\"directParentClasses\":[],\"sourceType\":2}},{\"v\":\"@proteinjs/reflection/SourceRepositoryFilter\"}],\"edges\":[{\"v\":\"@proteinjs/reflection-build-test-a/implementsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType\",\"value\":\"has type\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass\",\"value\":\"extends class\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableType\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableTypeWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends type\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterface\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"extends interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs\",\"w\":\"@proteinjs/reflection/Loadable\",\"value\":\"implements interface\"},{\"v\":\"@proteinjs/reflection-build-test-a/TypeFilter\",\"w\":\"@proteinjs/reflection/SourceRepositoryFilter\",\"value\":\"implements interface\"}]}";
21
21
  /** Generate Source Links */
22
22
  var ExtendsForeignType_1 = require("../src/ExtendsForeignType");
23
23
  var ExtendsForeignType_2 = require("../src/ExtendsForeignType");
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../test/examples/source-repository/a/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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../../test/examples/source-repository/a/generated/index.ts"],"names":[],"mappings":";AAAA,oCAAoC;;;;;;;;;;;;;;;;AAEpC,8CAA4C;AAG5C,4BAA4B;AAE5B,IAAM,WAAW,GAAG,il3CAAil3C,CAAC;AAGtm3C,4BAA4B;AAE5B,gEAA0E;AAC1E,gEAA6E;AAC7E,gEAAiF;AACjF,gEAAoF;AACpF,gEAA+E;AAC/E,gEAAkF;AAClF,gEAAmF;AACnF,gEAAsF;AACtF,gEAAsF;AACtF,4DAAqF;AACrF,iEAAgF;AAChF,iEAA0F;AAC1F,iEAAmF;AACnF,iEAA6F;AAC7F,4DAAsE;AACtE,4DAA8E;AAC9E,4DAA6E;AAC7E,4DAA2E;AAC3E,4DAAmF;AACnF,4DAA+E;AAC/E,8DAAsE;AACtE,4DAAuF;AACvF,8DAA8E;AAC9E,4DAAkF;AAClF,6DAA4E;AAC5E,6DAAsF;AACtF,gDAA+C;AAE/C,IAAM,WAAW,GAAG;IACnB,kEAAkE,EAAE,kDAA6B;IACjG,qEAAqE,EAAE,qDAAgC;IACvG,yEAAyE,EAAE,yDAAoC;IAC/G,4EAA4E,EAAE,4DAAuC;IACrH,uEAAuE,EAAE,uDAAkC;IAC3G,0EAA0E,EAAE,0DAAqC;IACjH,2EAA2E,EAAE,2DAAsC;IACnH,8EAA8E,EAAE,8DAAyC;IACzH,8EAA8E,EAAE,8DAAyC;IACzH,+EAA+E,EAAE,6DAA0C;IAC3H,wEAAwE,EAAE,yDAAmC;IAC7G,kFAAkF,EAAE,mEAA6C;IACjI,2EAA2E,EAAE,4DAAsC;IACnH,qFAAqF,EAAE,sEAAgD;IACvI,gEAAgE,EAAE,8CAA2B;IAC7F,wEAAwE,EAAE,sDAAmC;IAC7G,uEAAuE,EAAE,qDAAkC;IAC3G,qEAAqE,EAAE,mDAAgC;IACvG,6EAA6E,EAAE,2DAAwC;IACvH,yEAAyE,EAAE,uDAAoC;IAC/G,+DAA+D,EAAE,8CAA0B;IAC3F,iFAAiF,EAAE,+DAA4C;IAC/H,uEAAuE,EAAE,sDAAkC;IAC3G,4EAA4E,EAAE,0DAAuC;IACrH,sEAAsE,EAAE,qDAAiC;IACzG,gFAAgF,EAAE,+DAA2C;IAC7H,+CAA+C,EAAE,uBAAU;CAC3D,CAAC;AAGF,kCAAkC;AAElC,oDAAyD;AACzD,6BAAgB,CAAC,KAAK,CAAC,WAAW,EAAE,WAAW,CAAC,CAAC;AAGjD,2CAAyB"}