@proteinjs/reflection-build 2.0.2 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (246) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/dist/src/ReflectionDoctor.d.ts +6 -1
  3. package/dist/src/ReflectionDoctor.js +53 -51
  4. package/dist/src/ReflectionDoctor.js.map +1 -1
  5. package/dist/src/codegen/CanonicalSourceGraph.d.ts +22 -0
  6. package/dist/src/codegen/CanonicalSourceGraph.js +60 -0
  7. package/dist/src/codegen/CanonicalSourceGraph.js.map +1 -0
  8. package/dist/src/codegen/writeGeneratedIndex.d.ts +12 -3
  9. package/dist/src/codegen/writeGeneratedIndex.js +21 -13
  10. package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
  11. package/dist/src/parser/PackageSourceFiles.d.ts +30 -0
  12. package/dist/src/parser/PackageSourceFiles.js +151 -0
  13. package/dist/src/parser/PackageSourceFiles.js.map +1 -0
  14. package/dist/src/parser/SharedQualifiedNames.d.ts +43 -0
  15. package/dist/src/parser/SharedQualifiedNames.js +81 -0
  16. package/dist/src/parser/SharedQualifiedNames.js.map +1 -0
  17. package/dist/src/parser/createGraphBuilder.d.ts +6 -1
  18. package/dist/src/parser/createGraphBuilder.js +16 -31
  19. package/dist/src/parser/createGraphBuilder.js.map +1 -1
  20. package/dist/src/parser/createSourceGraph.d.ts +6 -1
  21. package/dist/src/parser/createSourceGraph.js +23 -38
  22. package/dist/src/parser/createSourceGraph.js.map +1 -1
  23. package/dist/test/Class.test.js +1 -1
  24. package/dist/test/Class.test.js.map +1 -1
  25. package/dist/test/ExamplePackageFixture.d.ts +47 -0
  26. package/dist/test/ExamplePackageFixture.js +207 -0
  27. package/dist/test/ExamplePackageFixture.js.map +1 -0
  28. package/dist/test/GraphEmitRelativePaths.test.js +1 -1
  29. package/dist/test/GraphEmitRelativePaths.test.js.map +1 -1
  30. package/dist/test/PackageSourceFiles.test.d.ts +1 -0
  31. package/dist/test/PackageSourceFiles.test.js +57 -0
  32. package/dist/test/PackageSourceFiles.test.js.map +1 -0
  33. package/dist/test/ReflectionDoctor.test.js +55 -18
  34. package/dist/test/ReflectionDoctor.test.js.map +1 -1
  35. package/dist/test/ReproducibleGeneratedIndex.test.d.ts +1 -0
  36. package/dist/test/ReproducibleGeneratedIndex.test.js +224 -0
  37. package/dist/test/ReproducibleGeneratedIndex.test.js.map +1 -0
  38. package/dist/test/SharedQualifiedNames.test.d.ts +1 -0
  39. package/dist/test/SharedQualifiedNames.test.js +186 -0
  40. package/dist/test/SharedQualifiedNames.test.js.map +1 -0
  41. package/dist/test/examples/reproducible/index.d.ts +4 -0
  42. package/dist/test/examples/reproducible/index.js +21 -0
  43. package/dist/test/examples/reproducible/index.js.map +1 -0
  44. package/dist/test/examples/reproducible/src/alpha/Alpha.d.ts +10 -0
  45. package/dist/test/examples/reproducible/src/alpha/Alpha.js +18 -0
  46. package/dist/test/examples/reproducible/src/alpha/Alpha.js.map +1 -0
  47. package/dist/test/examples/reproducible/src/alpha/Defaults.d.ts +2 -0
  48. package/dist/test/examples/reproducible/src/alpha/Defaults.js +6 -0
  49. package/dist/test/examples/reproducible/src/alpha/Defaults.js.map +1 -0
  50. package/dist/test/examples/reproducible/src/beta/Beta.d.ts +5 -0
  51. package/dist/test/examples/reproducible/src/beta/Beta.js +12 -0
  52. package/dist/test/examples/reproducible/src/beta/Beta.js.map +1 -0
  53. package/dist/test/examples/reproducible/src/beta/deep/Gamma.d.ts +4 -0
  54. package/dist/test/examples/reproducible/src/beta/deep/Gamma.js +11 -0
  55. package/dist/test/examples/reproducible/src/beta/deep/Gamma.js.map +1 -0
  56. package/dist/test/examples/reproducible/src/zeta/Defaults.d.ts +2 -0
  57. package/dist/test/examples/reproducible/src/zeta/Defaults.js +6 -0
  58. package/dist/test/examples/reproducible/src/zeta/Defaults.js.map +1 -0
  59. package/dist/test/examples/reproducible/src/zeta/Zeta.d.ts +7 -0
  60. package/dist/test/examples/reproducible/src/zeta/Zeta.js +18 -0
  61. package/dist/test/examples/reproducible/src/zeta/Zeta.js.map +1 -0
  62. package/dist/test/examples/shared-name/index.d.ts +1 -0
  63. package/dist/test/examples/shared-name/index.js +18 -0
  64. package/dist/test/examples/shared-name/index.js.map +1 -0
  65. package/dist/test/examples/shared-name/src/alpha/Widget.d.ts +4 -0
  66. package/dist/test/examples/shared-name/src/alpha/Widget.js +3 -0
  67. package/dist/test/examples/shared-name/src/alpha/Widget.js.map +1 -0
  68. package/dist/test/examples/shared-name/src/beta/Widget.d.ts +3 -0
  69. package/dist/test/examples/shared-name/src/beta/Widget.js +13 -0
  70. package/dist/test/examples/shared-name/src/beta/Widget.js.map +1 -0
  71. package/dist/test/examples/shared-name/src/gamma/Gear.d.ts +7 -0
  72. package/dist/test/examples/shared-name/src/gamma/Gear.js +5 -0
  73. package/dist/test/examples/shared-name/src/gamma/Gear.js.map +1 -0
  74. package/dist/test/examples/shared-name-pruned/index.d.ts +1 -0
  75. package/dist/test/examples/shared-name-pruned/index.js +18 -0
  76. package/dist/test/examples/shared-name-pruned/index.js.map +1 -0
  77. package/dist/test/examples/shared-name-pruned/src/alpha/Limits.d.ts +3 -0
  78. package/dist/test/examples/shared-name-pruned/src/alpha/Limits.js +6 -0
  79. package/dist/test/examples/shared-name-pruned/src/alpha/Limits.js.map +1 -0
  80. package/dist/test/examples/shared-name-pruned/src/alpha/Shape.d.ts +3 -0
  81. package/dist/test/examples/shared-name-pruned/src/alpha/Shape.js +3 -0
  82. package/dist/test/examples/shared-name-pruned/src/alpha/Shape.js.map +1 -0
  83. package/dist/test/examples/shared-name-pruned/src/alpha/Tile.d.ts +7 -0
  84. package/dist/test/examples/shared-name-pruned/src/alpha/Tile.js +11 -0
  85. package/dist/test/examples/shared-name-pruned/src/alpha/Tile.js.map +1 -0
  86. package/dist/test/examples/shared-name-pruned/src/beta/Limits.d.ts +3 -0
  87. package/dist/test/examples/shared-name-pruned/src/beta/Limits.js +6 -0
  88. package/dist/test/examples/shared-name-pruned/src/beta/Limits.js.map +1 -0
  89. package/dist/test/examples/shared-name-pruned/src/beta/Shape.d.ts +3 -0
  90. package/dist/test/examples/shared-name-pruned/src/beta/Shape.js +3 -0
  91. package/dist/test/examples/shared-name-pruned/src/beta/Shape.js.map +1 -0
  92. package/dist/test/examples/source-repository/a/generated/index.js +28 -28
  93. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  94. package/dist/test/examples/source-repository/a/src/ExtendsForeignType.d.ts +1 -1
  95. package/dist/test/examples/source-repository/a/src/ExtendsForeignType.js +5 -5
  96. package/dist/test/examples/source-repository/a/src/ExtendsForeignType.js.map +1 -1
  97. package/dist/test/examples/source-repository/b/generated/index.js +3 -3
  98. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  99. package/package.json +5 -5
  100. package/src/ReflectionDoctor.ts +37 -17
  101. package/src/codegen/CanonicalSourceGraph.ts +50 -0
  102. package/src/codegen/writeGeneratedIndex.ts +35 -9
  103. package/src/parser/PackageSourceFiles.ts +66 -0
  104. package/src/parser/SharedQualifiedNames.ts +76 -0
  105. package/src/parser/createGraphBuilder.ts +25 -10
  106. package/src/parser/createSourceGraph.ts +14 -16
  107. package/test/Class.test.ts +1 -1
  108. package/test/ExamplePackageFixture.ts +142 -0
  109. package/test/GraphEmitRelativePaths.test.ts +1 -1
  110. package/test/PackageSourceFiles.test.ts +42 -0
  111. package/test/ReflectionDoctor.test.ts +50 -12
  112. package/test/ReproducibleGeneratedIndex.test.ts +114 -0
  113. package/test/SharedQualifiedNames.test.ts +89 -0
  114. package/test/examples/reproducible/index.ts +4 -0
  115. package/test/examples/reproducible/src/alpha/Alpha.ts +13 -0
  116. package/test/examples/reproducible/src/alpha/Defaults.ts +4 -0
  117. package/test/examples/reproducible/src/beta/Beta.ts +7 -0
  118. package/test/examples/reproducible/src/beta/deep/Gamma.ts +5 -0
  119. package/test/examples/reproducible/src/zeta/Defaults.ts +4 -0
  120. package/test/examples/reproducible/src/zeta/Zeta.ts +9 -0
  121. package/test/examples/shared-name/index.ts +1 -0
  122. package/test/examples/shared-name/src/alpha/Widget.ts +6 -0
  123. package/test/examples/shared-name/src/beta/Widget.ts +5 -0
  124. package/test/examples/shared-name/src/gamma/Gear.ts +9 -0
  125. package/test/examples/shared-name-pruned/index.ts +1 -0
  126. package/test/examples/shared-name-pruned/src/alpha/Limits.ts +2 -0
  127. package/test/examples/shared-name-pruned/src/alpha/Shape.ts +3 -0
  128. package/test/examples/shared-name-pruned/src/alpha/Tile.ts +9 -0
  129. package/test/examples/shared-name-pruned/src/beta/Limits.ts +2 -0
  130. package/test/examples/shared-name-pruned/src/beta/Shape.ts +4 -0
  131. package/test/examples/source-repository/a/dist/codegen/CanonicalSourceGraph.d.ts +22 -0
  132. package/test/examples/source-repository/a/dist/codegen/CanonicalSourceGraph.js +60 -0
  133. package/test/examples/source-repository/a/dist/codegen/CanonicalSourceGraph.js.map +1 -0
  134. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +12 -3
  135. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +21 -13
  136. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
  137. package/test/examples/source-repository/a/dist/generated/index.js +28 -28
  138. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  139. package/test/examples/source-repository/a/dist/parser/PackageSourceFiles.d.ts +30 -0
  140. package/test/examples/source-repository/a/dist/parser/PackageSourceFiles.js +151 -0
  141. package/test/examples/source-repository/a/dist/parser/PackageSourceFiles.js.map +1 -0
  142. package/test/examples/source-repository/a/dist/parser/SharedQualifiedNames.d.ts +43 -0
  143. package/test/examples/source-repository/a/dist/parser/SharedQualifiedNames.js +81 -0
  144. package/test/examples/source-repository/a/dist/parser/SharedQualifiedNames.js.map +1 -0
  145. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.d.ts +6 -1
  146. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js +16 -31
  147. package/test/examples/source-repository/a/dist/parser/createGraphBuilder.js.map +1 -1
  148. package/test/examples/source-repository/a/dist/parser/createSourceGraph.d.ts +6 -1
  149. package/test/examples/source-repository/a/dist/parser/createSourceGraph.js +23 -38
  150. package/test/examples/source-repository/a/dist/parser/createSourceGraph.js.map +1 -1
  151. package/test/examples/source-repository/a/dist/src/ExtendsForeignType.d.ts +1 -1
  152. package/test/examples/source-repository/a/dist/src/ExtendsForeignType.js +5 -5
  153. package/test/examples/source-repository/a/dist/src/ExtendsForeignType.js.map +1 -1
  154. package/test/examples/source-repository/a/generated/index.ts +44 -44
  155. package/test/examples/source-repository/a/node_modules/.package-lock.json +13 -13
  156. package/test/examples/source-repository/a/node_modules/@proteinjs/util/CHANGELOG.md +8 -0
  157. package/test/examples/source-repository/a/node_modules/@proteinjs/util/LICENSE +21 -0
  158. package/test/examples/source-repository/a/node_modules/@proteinjs/util/package.json +3 -2
  159. package/test/examples/source-repository/a/node_modules/@proteinjs/util/tsconfig.json +1 -0
  160. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +63 -0
  161. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/LICENSE +21 -0
  162. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/index.d.ts +1 -0
  163. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/index.js +1 -0
  164. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/index.js.map +1 -1
  165. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/ArgsMap.js +7 -4
  166. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/ArgsMap.js.map +1 -1
  167. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js +16 -12
  168. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  169. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +59 -13
  170. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +119 -80
  171. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
  172. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.d.ts +91 -0
  173. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.js +608 -0
  174. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.js.map +1 -0
  175. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/promisifiedFs.d.ts +0 -1
  176. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/index.ts +1 -0
  177. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +4 -3
  178. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/ArgsMap.ts +7 -4
  179. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/Fs.ts +12 -9
  180. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/PackageUtil.ts +92 -38
  181. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/WorkspaceDeclaration.ts +340 -0
  182. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/ArgsMap.test.ts +35 -0
  183. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/Fs.getFilePathsMatchingGlob.test.ts +70 -0
  184. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/PackageUtil.getLocalPackageMap.test.ts +107 -0
  185. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/PackageUtil.pathKeyedIdentity.test.ts +169 -0
  186. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/test/WorkspaceDeclaration.test.ts +174 -0
  187. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/tsconfig.json +1 -0
  188. package/test/examples/source-repository/a/package-lock.json +16 -16
  189. package/test/examples/source-repository/a/package.json +3 -3
  190. package/test/examples/source-repository/a/src/ExtendsForeignType.ts +1 -1
  191. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.d.ts +22 -0
  192. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.js +60 -0
  193. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.js.map +1 -0
  194. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +12 -3
  195. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +21 -13
  196. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  197. package/test/examples/source-repository/b/dist/generated/index.js +3 -3
  198. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  199. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.d.ts +30 -0
  200. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.js +151 -0
  201. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.js.map +1 -0
  202. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.d.ts +43 -0
  203. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.js +81 -0
  204. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.js.map +1 -0
  205. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.d.ts +6 -1
  206. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js +16 -31
  207. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js.map +1 -1
  208. package/test/examples/source-repository/b/dist/parser/createSourceGraph.d.ts +6 -1
  209. package/test/examples/source-repository/b/dist/parser/createSourceGraph.js +23 -38
  210. package/test/examples/source-repository/b/dist/parser/createSourceGraph.js.map +1 -1
  211. package/test/examples/source-repository/b/generated/index.ts +6 -6
  212. package/test/examples/source-repository/b/node_modules/.package-lock.json +10 -10
  213. package/test/examples/source-repository/b/node_modules/@proteinjs/util/CHANGELOG.md +8 -0
  214. package/test/examples/source-repository/b/node_modules/@proteinjs/util/LICENSE +21 -0
  215. package/test/examples/source-repository/b/node_modules/@proteinjs/util/package.json +3 -2
  216. package/test/examples/source-repository/b/node_modules/@proteinjs/util/tsconfig.json +1 -0
  217. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +63 -0
  218. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/LICENSE +21 -0
  219. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/index.d.ts +1 -0
  220. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/index.js +1 -0
  221. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/index.js.map +1 -1
  222. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/ArgsMap.js +7 -4
  223. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/ArgsMap.js.map +1 -1
  224. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js +16 -12
  225. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  226. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +59 -13
  227. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +119 -80
  228. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
  229. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.d.ts +91 -0
  230. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.js +608 -0
  231. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/WorkspaceDeclaration.js.map +1 -0
  232. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/promisifiedFs.d.ts +0 -1
  233. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/index.ts +1 -0
  234. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +4 -3
  235. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/ArgsMap.ts +7 -4
  236. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/Fs.ts +12 -9
  237. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/PackageUtil.ts +92 -38
  238. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/WorkspaceDeclaration.ts +340 -0
  239. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/ArgsMap.test.ts +35 -0
  240. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/Fs.getFilePathsMatchingGlob.test.ts +70 -0
  241. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/PackageUtil.getLocalPackageMap.test.ts +107 -0
  242. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/PackageUtil.pathKeyedIdentity.test.ts +169 -0
  243. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/test/WorkspaceDeclaration.test.ts +174 -0
  244. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/tsconfig.json +1 -0
  245. package/test/examples/source-repository/b/package-lock.json +13 -13
  246. package/test/examples/source-repository/b/package.json +3 -3
@@ -5,73 +5,73 @@ import '@proteinjs/reflection-build-test-b';
5
5
  /** Generate Source Graph */
6
6
 
7
7
  const sourceGraph =
8
- '{"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"}]}';
8
+ '{"options":{"directed":true,"multigraph":false,"compound":false},"nodes":[{"v":"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass"},{"v":"@proteinjs/reflection-build-test-b/LoadableForeignInterface"},{"v":"@proteinjs/reflection-build-test-b/LoadableForeignType"},{"v":"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass"},{"v":"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface"},{"v":"@proteinjs/reflection-build-test-b/NotLoadableForeignType"},{"v":"@proteinjs/reflection/Loadable"},{"v":"@proteinjs/reflection/SourceRepositoryFilter"},{"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/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/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/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/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/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/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/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/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/ImplementsExtendsNotLoadableForeignInterface","value":{"packageName":"@proteinjs/reflection-build-test-a","name":"ImplementsExtendsNotLoadableForeignInterface","filePath":"src/ExtendsForeignType.ts","qualifiedName":"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignInterface","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":"ExtendsNotLoadableForeignInterface","filePath":null,"qualifiedName":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface","properties":[],"methods":[],"typeParameters":[],"directParents":[]}],"directParentClasses":[],"sourceType":2}},{"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-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-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-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-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/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/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-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-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/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/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/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/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-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/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/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/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/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/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/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/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/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/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/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/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/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/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/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}}],"edges":[{"v":"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass","w":"@proteinjs/reflection-build-test-b/LoadableForeignAbstractClass","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/ExtendsLoadableForeignType","w":"@proteinjs/reflection-build-test-b/LoadableForeignType","value":"extends type"},{"v":"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass","w":"@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass","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/ExtendsLocalLoadableInterfaceWithArgs","w":"@proteinjs/reflection-build-test-a/LocalLoadableInterfaceWithArgs","value":"extends interface"},{"v":"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType","w":"@proteinjs/reflection-build-test-a/LocalLoadableType","value":"extends type"},{"v":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass","value":"extends class"},{"v":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface","value":"extends interface"},{"v":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignType","value":"extends type"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass","w":"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass","value":"extends class"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface","w":"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignInterface","value":"implements interface"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass","w":"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass","value":"extends class"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface","w":"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableInterface","value":"implements interface"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass","w":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass","value":"extends class"},{"v":"@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignInterface","w":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignInterface","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/ImplementsLoadableForeignInterface","w":"@proteinjs/reflection-build-test-b/LoadableForeignInterface","value":"implements 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/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/ImplementsNotLoadableForeignAbstractClass","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignAbstractClass","value":"extends class"},{"v":"@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignInterface","value":"implements 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/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/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/TypeFilter","w":"@proteinjs/reflection/SourceRepositoryFilter","value":"implements interface"},{"v":"@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType","w":"@proteinjs/reflection-build-test-a/ExtendsLoadableForeignType","value":"has type"},{"v":"@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType","w":"@proteinjs/reflection-build-test-a/ExtendsLocalLoadableType","value":"has type"},{"v":"@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType","w":"@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignType","value":"has type"},{"v":"@proteinjs/reflection-build-test-a/implementsLoadableForeignType","w":"@proteinjs/reflection-build-test-b/LoadableForeignType","value":"has type"},{"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/implementsNotLoadableForeignType","w":"@proteinjs/reflection-build-test-b/NotLoadableForeignType","value":"has type"}]}';
9
9
 
10
10
  /** Generate Source Links */
11
11
 
12
- import { implementsLoadableForeignType } from '../src/ExtendsForeignType';
13
- import { implementsNotLoadableForeignType } from '../src/ExtendsForeignType';
14
- import { implementsExtendsLoadableForeignType } from '../src/ExtendsForeignType';
15
- import { implementsExtendsNotLoadableForeignType } from '../src/ExtendsForeignType';
16
- import { ImplementsLoadableForeignInterface } from '../src/ExtendsForeignType';
17
- import { ImplementsNotLoadableForeignInterface } from '../src/ExtendsForeignType';
18
- import { ImplementsLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
19
- import { ImplementsNotLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
20
- import { ImplementsExtendsLoadableForeignInterface } from '../src/ExtendsForeignType';
21
- import { ImplementsExtendsLocalNotLoadableInterface } from '../src/ExtendsLocalType';
22
12
  import { ExtendsLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
23
- import { ImplementsExtendsLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
24
13
  import { ExtendsNotLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
14
+ import { ImplementsExtendsLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
15
+ import { ImplementsExtendsLoadableForeignInterface } from '../src/ExtendsForeignType';
25
16
  import { ImplementsExtendsNotLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
26
- import { implementsLocalLoadableType } from '../src/ExtendsLocalType';
27
- import { implementsLocalLoadableTypeWithArgs } from '../src/ExtendsLocalType';
28
- import { implementsExtendsLocalLoadableType } from '../src/ExtendsLocalType';
17
+ import { ImplementsExtendsNotLoadableForeignInterface } from '../src/ExtendsForeignType';
18
+ import { ImplementsLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
19
+ import { ImplementsLoadableForeignInterface } from '../src/ExtendsForeignType';
20
+ import { ImplementsNotLoadableForeignAbstractClass } from '../src/ExtendsForeignType';
21
+ import { ImplementsNotLoadableForeignInterface } from '../src/ExtendsForeignType';
22
+ import { implementsExtendsLoadableForeignType } from '../src/ExtendsForeignType';
23
+ import { implementsExtendsNotLoadableForeignType } from '../src/ExtendsForeignType';
24
+ import { implementsLoadableForeignType } from '../src/ExtendsForeignType';
25
+ import { implementsNotLoadableForeignType } from '../src/ExtendsForeignType';
26
+ import { ExtendsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
27
+ import { ImplementsExtendsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
28
+ import { ImplementsExtendsLocalLoadableInterface } from '../src/ExtendsLocalType';
29
+ import { ImplementsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
30
+ import { ImplementsLocalLoadableAbstractClassWithArgs } from '../src/ExtendsLocalType';
29
31
  import { ImplementsLocalLoadableInterface } from '../src/ExtendsLocalType';
30
32
  import { ImplementsLocalLoadableInterfaceWithArgs } from '../src/ExtendsLocalType';
31
- import { ImplementsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
33
+ import { implementsExtendsLocalLoadableType } from '../src/ExtendsLocalType';
34
+ import { implementsLocalLoadableType } from '../src/ExtendsLocalType';
35
+ import { implementsLocalLoadableTypeWithArgs } from '../src/ExtendsLocalType';
32
36
  import { LocalLoadableAbstractClass } from '../src/LocalLoadableType';
33
- import { ImplementsLocalLoadableAbstractClassWithArgs } from '../src/ExtendsLocalType';
34
37
  import { LocalLoadableAbstractClassWithArgs } from '../src/LocalLoadableType';
35
- import { ImplementsExtendsLocalLoadableInterface } from '../src/ExtendsLocalType';
36
- import { ExtendsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
37
- import { ImplementsExtendsLocalLoadableAbstractClass } from '../src/ExtendsLocalType';
38
38
  import { TypeFilter } from '../src/TypeFilter';
39
39
 
40
40
  const sourceLinks = {
41
- '@proteinjs/reflection-build-test-a/implementsLoadableForeignType': implementsLoadableForeignType,
42
- '@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType': implementsNotLoadableForeignType,
43
- '@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType': implementsExtendsLoadableForeignType,
44
- '@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType': implementsExtendsNotLoadableForeignType,
45
- '@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface': ImplementsLoadableForeignInterface,
46
- '@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface': ImplementsNotLoadableForeignInterface,
47
- '@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass': ImplementsLoadableForeignAbstractClass,
48
- '@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass':
49
- ImplementsNotLoadableForeignAbstractClass,
50
- '@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface':
51
- ImplementsExtendsLoadableForeignInterface,
52
- '@proteinjs/reflection-build-test-a/ImplementsExtendsLocalNotLoadableInterface':
53
- ImplementsExtendsLocalNotLoadableInterface,
54
41
  '@proteinjs/reflection-build-test-a/ExtendsLoadableForeignAbstractClass': ExtendsLoadableForeignAbstractClass,
42
+ '@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass': ExtendsNotLoadableForeignAbstractClass,
55
43
  '@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignAbstractClass':
56
44
  ImplementsExtendsLoadableForeignAbstractClass,
57
- '@proteinjs/reflection-build-test-a/ExtendsNotLoadableForeignAbstractClass': ExtendsNotLoadableForeignAbstractClass,
45
+ '@proteinjs/reflection-build-test-a/ImplementsExtendsLoadableForeignInterface':
46
+ ImplementsExtendsLoadableForeignInterface,
58
47
  '@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignAbstractClass':
59
48
  ImplementsExtendsNotLoadableForeignAbstractClass,
60
- '@proteinjs/reflection-build-test-a/implementsLocalLoadableType': implementsLocalLoadableType,
61
- '@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs': implementsLocalLoadableTypeWithArgs,
62
- '@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType': implementsExtendsLocalLoadableType,
49
+ '@proteinjs/reflection-build-test-a/ImplementsExtendsNotLoadableForeignInterface':
50
+ ImplementsExtendsNotLoadableForeignInterface,
51
+ '@proteinjs/reflection-build-test-a/ImplementsLoadableForeignAbstractClass': ImplementsLoadableForeignAbstractClass,
52
+ '@proteinjs/reflection-build-test-a/ImplementsLoadableForeignInterface': ImplementsLoadableForeignInterface,
53
+ '@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignAbstractClass':
54
+ ImplementsNotLoadableForeignAbstractClass,
55
+ '@proteinjs/reflection-build-test-a/ImplementsNotLoadableForeignInterface': ImplementsNotLoadableForeignInterface,
56
+ '@proteinjs/reflection-build-test-a/implementsExtendsLoadableForeignType': implementsExtendsLoadableForeignType,
57
+ '@proteinjs/reflection-build-test-a/implementsExtendsNotLoadableForeignType': implementsExtendsNotLoadableForeignType,
58
+ '@proteinjs/reflection-build-test-a/implementsLoadableForeignType': implementsLoadableForeignType,
59
+ '@proteinjs/reflection-build-test-a/implementsNotLoadableForeignType': implementsNotLoadableForeignType,
60
+ '@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass': ExtendsLocalLoadableAbstractClass,
61
+ '@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass':
62
+ ImplementsExtendsLocalLoadableAbstractClass,
63
+ '@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface': ImplementsExtendsLocalLoadableInterface,
64
+ '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass': ImplementsLocalLoadableAbstractClass,
65
+ '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs':
66
+ ImplementsLocalLoadableAbstractClassWithArgs,
63
67
  '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterface': ImplementsLocalLoadableInterface,
64
68
  '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableInterfaceWithArgs':
65
69
  ImplementsLocalLoadableInterfaceWithArgs,
66
- '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClass': ImplementsLocalLoadableAbstractClass,
70
+ '@proteinjs/reflection-build-test-a/implementsExtendsLocalLoadableType': implementsExtendsLocalLoadableType,
71
+ '@proteinjs/reflection-build-test-a/implementsLocalLoadableType': implementsLocalLoadableType,
72
+ '@proteinjs/reflection-build-test-a/implementsLocalLoadableTypeWithArgs': implementsLocalLoadableTypeWithArgs,
67
73
  '@proteinjs/reflection-build-test-a/LocalLoadableAbstractClass': LocalLoadableAbstractClass,
68
- '@proteinjs/reflection-build-test-a/ImplementsLocalLoadableAbstractClassWithArgs':
69
- ImplementsLocalLoadableAbstractClassWithArgs,
70
74
  '@proteinjs/reflection-build-test-a/LocalLoadableAbstractClassWithArgs': LocalLoadableAbstractClassWithArgs,
71
- '@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableInterface': ImplementsExtendsLocalLoadableInterface,
72
- '@proteinjs/reflection-build-test-a/ExtendsLocalLoadableAbstractClass': ExtendsLocalLoadableAbstractClass,
73
- '@proteinjs/reflection-build-test-a/ImplementsExtendsLocalLoadableAbstractClass':
74
- ImplementsExtendsLocalLoadableAbstractClass,
75
75
  '@proteinjs/reflection-build-test-a/TypeFilter': TypeFilter,
76
76
  };
77
77
 
@@ -10,9 +10,9 @@
10
10
  "license": "ISC",
11
11
  "dependencies": {
12
12
  "@dagrejs/graphlib": "2.1.4",
13
- "@proteinjs/reflection": "^1.1.12",
14
- "@proteinjs/util": "^1.6.1",
15
- "@proteinjs/util-node": "^1.10.1",
13
+ "@proteinjs/reflection": "^1.2.0",
14
+ "@proteinjs/util": "^1.6.2",
15
+ "@proteinjs/util-node": "^1.11.0",
16
16
  "globby": "11.0.1",
17
17
  "gulp": "4.0.2",
18
18
  "gulp-shell": "0.8.0",
@@ -1078,9 +1078,9 @@
1078
1078
  }
1079
1079
  },
1080
1080
  "node_modules/@proteinjs/reflection": {
1081
- "version": "1.1.12",
1082
- "resolved": "https://registry.npmjs.org/@proteinjs/reflection/-/reflection-1.1.12.tgz",
1083
- "integrity": "sha512-w+sL7Nqppk4DXdFxrfwjEGHSPykCwB3GWaiQXcP6X+8Qtj32BI0wmTvAt6hXvtbXPhvIHPFnTfSs9qlW0FYf9Q==",
1081
+ "version": "1.2.0",
1082
+ "resolved": "https://registry.npmjs.org/@proteinjs/reflection/-/reflection-1.2.0.tgz",
1083
+ "integrity": "sha512-AsoipvjpRD0WA1VC4770D5NsN0BDdli9UipdzHHPxcA+BJYcxwPLPLA7h+AAXTNMNfpr/BbEFkxHC0oSCiTkNg==",
1084
1084
  "license": "ISC",
1085
1085
  "dependencies": {
1086
1086
  "@dagrejs/graphlib": "2.1.4",
@@ -1092,9 +1092,9 @@
1092
1092
  "link": true
1093
1093
  },
1094
1094
  "node_modules/@proteinjs/util": {
1095
- "version": "1.6.1",
1096
- "resolved": "https://registry.npmjs.org/@proteinjs/util/-/util-1.6.1.tgz",
1097
- "integrity": "sha512-bFy6++l1u6RtMMeZEDYvMQWg14SAG2gCgUrcPy9M0Ctl0ATVMdQbU3h4IUQOlxwW32mWoni0qDTt9BkmHwAQjg==",
1095
+ "version": "1.6.2",
1096
+ "resolved": "https://registry.npmjs.org/@proteinjs/util/-/util-1.6.2.tgz",
1097
+ "integrity": "sha512-ZY7rMImFNnGV7x/Bqkkav1/gy9IvRR823JcnRJ4SoWXSlA29kuPdaHfnBay6eTQ7+kjiGGtJ+tMWM6NvZW9rUw==",
1098
1098
  "license": "ISC",
1099
1099
  "dependencies": {
1100
1100
  "@dagrejs/graphlib": "2.1.4",
@@ -1102,13 +1102,13 @@
1102
1102
  }
1103
1103
  },
1104
1104
  "node_modules/@proteinjs/util-node": {
1105
- "version": "1.10.1",
1106
- "resolved": "https://registry.npmjs.org/@proteinjs/util-node/-/util-node-1.10.1.tgz",
1107
- "integrity": "sha512-950BkiO4ccf9Bbt0CpvPj5pUalNH9dV1zqr7Cw1Dh3tg9xny6R02p1QrKvPU7anoZcnSp2Us6lBv0rlutYoSWw==",
1105
+ "version": "1.11.0",
1106
+ "resolved": "https://registry.npmjs.org/@proteinjs/util-node/-/util-node-1.11.0.tgz",
1107
+ "integrity": "sha512-+G6Q2w/F5NqmB/3wpNlhj6anpFs503xeKGiec4Hh0+WAsN1JkZCMmEQsHrrzaLGide0b6LyY3Kdo1eycFWRwGw==",
1108
1108
  "license": "ISC",
1109
1109
  "dependencies": {
1110
1110
  "@dagrejs/graphlib": "2.1.4",
1111
- "@proteinjs/util": "^1.6.1",
1111
+ "@proteinjs/util": "^1.6.2",
1112
1112
  "fs-extra": "11.1.1",
1113
1113
  "globby": "11.0.1",
1114
1114
  "typescript": "5.2.2"
@@ -3,6 +3,14 @@
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
+ ## [1.6.2](https://github.com/proteinjs/util/compare/@proteinjs/util@1.6.1...@proteinjs/util@1.6.2) (2026-08-13)
7
+
8
+ **Note:** Version bump only for package @proteinjs/util
9
+
10
+
11
+
12
+
13
+
6
14
  # [1.6.0](https://github.com/proteinjs/util/compare/@proteinjs/util@1.5.0...@proteinjs/util@1.6.0) (2026-03-06)
7
15
 
8
16
 
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Brent Bahry
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proteinjs/util",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Runtime-agnostic util libs",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,5 +36,6 @@
36
36
  "eslint-config-prettier": "9.1.0",
37
37
  "eslint-plugin-prettier": "5.1.3",
38
38
  "typescript": "5.2.2"
39
- }
39
+ },
40
+ "gitHead": "6b3396594c660b51fb8312414afba5af74287159"
40
41
  }
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
+ "noEmitOnError": true,
3
4
  "rootDir": "./",
4
5
  "target": "es5",
5
6
  "module": "commonjs",
@@ -3,6 +3,69 @@
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
+ # [1.11.0](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.6...@proteinjs/util-node@1.11.0) (2026-09-03)
7
+
8
+
9
+ ### Features
10
+
11
+ * **util-node:** workspace membership is declared, never crawled — WorkspaceDeclaration is the one owner of which package.json files are members: a root's lerna.json `packages` (lerna's default packages/* when the field is absent) plus the root package.json `workspacePackages` extra roots name exactly its members; a declared root OWNS its subtree (nothing undeclared beneath it is a member, however the tree is walked from above); only a tree with no declaration at its root is crawled — bounded exactly as before (no hidden dirs, node_modules, dist, symlinks) — and it hands every declared root it meets to that root's declaration. Hard errors naming their paths: a declared literal with no package.json; two leaf packages sharing a name (containers — every root in the metarepo is named `root` — are path-identified and exempt). npm's own `workspaces` field is deliberately not read (a different install model). Why: n3xah/app Deploy to Test run 33747781291 (2026-09-03) — CI fixture trees carrying the app's own package names shadowed packages/common, server and ui in the crawl (last path wins), build-workspace built "1 package in workspace", the image shipped with no packages/server/dist, and the migration gate failed on `Cannot find module dist/generated/index.js`. RED RUN stated: the shadowing repro through PackageUtil.getWorkspaceMetadata resolved @t/server to the fixture path at the pre-fix scanner; green with the declaration wired in. Bites verified: collision check disarmed -> the collision pin red alone; declaration ignored at the root -> repro + globs + literal-missing red; restored green. Suite: packages/node 6 suites / 30 tests green (24 pre-existing + 6 new). ([a8f3684](https://github.com/proteinjs/util/commit/a8f368494a07146d850c33584428945601d223e3))
12
+
13
+
14
+
15
+
16
+
17
+ ## [1.10.6](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.5...@proteinjs/util-node@1.10.6) (2026-09-02)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **util-node:** Fs glob helpers prune ignored directories under a dot-directory base path — match relative to cwd (absolute:true) instead of folding the directory into an absolute pattern. In the absolute form fast-glob matched the ignore list against the absolute entry path and a globstar does not cross a dot-segment, so under ~/.n3xa/workspaces/<name> (the default local workspaces root) or a .scratch estate the ignore list matched nothing: every node_modules/dist was walked in full, workspace symlinks followed into cycles, and the dev-skill Glob of every package.json over a materialized metarepo exhausted a 12G heap three times running (2026-09-02). getFilePaths now rides the same path (its dir + '**/*' form walked one level only without a trailing separator). RED RUN stated: Fs.getFilePathsMatchingGlob.test 3/3 red at the pre-fix code (EACCES from inside node_modules/dep/locked under a dot-directory tmp root — the walk provably entering node_modules); green with the cwd form. Bite verified: absolute form re-introduced -> 3/3 red; restored green. Suite: packages/node 5 suites / 24 tests green (21 pre-existing + 3 new). ([2aace27](https://github.com/proteinjs/util/commit/2aace277e5e5727dc2666ee0a3cd3d49a3c69932))
23
+
24
+
25
+
26
+
27
+
28
+ ## [1.10.5](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.4...@proteinjs/util-node@1.10.5) (2026-09-02)
29
+
30
+
31
+ ### Bug Fixes
32
+
33
+ * **util-node:** parseArgsMap splits on the FIRST '=' only — values with embedded '=' (the estate CLI's --note among them) previously truncated at the second '=' (split('=')[1] kept one segment). The parser now preserves the full value after the first separator; bare flags and empty values unchanged. RED RUN stated: ArgsMap.test 2/6 red at the pre-fix code (--note=a=b=c parsed as 'a'); green with the indexOf split. Bite verified: truncation re-introduced -> the 2 embedded-'=' pins red alone; restored green. Suite: packages/node 4 suites / 21 tests green (15 pre-existing + 6 new). ([277c1d6](https://github.com/proteinjs/util/commit/277c1d65e15d874f7c1750b3edf63bf905120780))
34
+
35
+
36
+
37
+
38
+
39
+ ## [1.10.4](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.3...@proteinjs/util-node@1.10.4) (2026-08-17)
40
+
41
+
42
+ ### Bug Fixes
43
+
44
+ * package identity is the package.json path — name-keyed discovery dropped same-named packages ([9cd9721](https://github.com/proteinjs/util/commit/9cd9721dec7052f65b1021a4c004900ff19802a8)), closes [#75](https://github.com/proteinjs/util/issues/75)
45
+
46
+
47
+
48
+
49
+
50
+ ## [1.10.3](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.2...@proteinjs/util-node@1.10.3) (2026-08-15)
51
+
52
+
53
+ ### Bug Fixes
54
+
55
+ * bounded workspace package discovery — replace glob walk that descended unpruned into hidden directories ([04a56bb](https://github.com/proteinjs/util/commit/04a56bb228536ffa2fb63e888524c672f4cca186))
56
+
57
+
58
+
59
+
60
+
61
+ ## [1.10.2](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.10.1...@proteinjs/util-node@1.10.2) (2026-08-13)
62
+
63
+ **Note:** Version bump only for package @proteinjs/util-node
64
+
65
+
66
+
67
+
68
+
6
69
  # [1.10.0](https://github.com/proteinjs/util/compare/@proteinjs/util-node@1.9.0...@proteinjs/util-node@1.10.0) (2026-07-28)
7
70
 
8
71