@proteinjs/reflection-build 2.0.3 → 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 (176) hide show
  1. package/CHANGELOG.md +16 -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 +2 -2
  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/src/ExtendsForeignType.ts +1 -1
  156. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.d.ts +22 -0
  157. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.js +60 -0
  158. package/test/examples/source-repository/b/dist/codegen/CanonicalSourceGraph.js.map +1 -0
  159. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +12 -3
  160. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +21 -13
  161. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  162. package/test/examples/source-repository/b/dist/generated/index.js +3 -3
  163. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  164. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.d.ts +30 -0
  165. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.js +151 -0
  166. package/test/examples/source-repository/b/dist/parser/PackageSourceFiles.js.map +1 -0
  167. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.d.ts +43 -0
  168. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.js +81 -0
  169. package/test/examples/source-repository/b/dist/parser/SharedQualifiedNames.js.map +1 -0
  170. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.d.ts +6 -1
  171. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js +16 -31
  172. package/test/examples/source-repository/b/dist/parser/createGraphBuilder.js.map +1 -1
  173. package/test/examples/source-repository/b/dist/parser/createSourceGraph.d.ts +6 -1
  174. package/test/examples/source-repository/b/dist/parser/createSourceGraph.js +23 -38
  175. package/test/examples/source-repository/b/dist/parser/createSourceGraph.js.map +1 -1
  176. package/test/examples/source-repository/b/generated/index.ts +6 -6
@@ -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
 
@@ -57,7 +57,7 @@ export interface ExtendsNotLoadableForeignInterface extends NotLoadableForeignIn
57
57
  b: number;
58
58
  }
59
59
 
60
- export class ImplementsExtendsLocalNotLoadableInterface implements ExtendsNotLoadableForeignInterface {
60
+ export class ImplementsExtendsNotLoadableForeignInterface implements ExtendsNotLoadableForeignInterface {
61
61
  z = 1;
62
62
  b = 2;
63
63
  }
@@ -0,0 +1,22 @@
1
+ import { Graph } from '@dagrejs/graphlib';
2
+ /**
3
+ * The emitted form of a source graph: the same nodes, values and edges, in an order that is a
4
+ * function of the graph's content alone — never of the order the builder happened to visit the
5
+ * sources or insert placeholder parents. The generated index serializes nodes and edges in
6
+ * insertion order, so this order is the artifact's byte order (and the runtime's `objects()`
7
+ * order within one package).
8
+ *
9
+ * - Nodes by the declaring file's package-relative path, then by qualified name. A placeholder
10
+ * (a parent referenced here but declared elsewhere) has no file and sorts by name ahead of
11
+ * the declared nodes.
12
+ * - Edges by child, then parent (a source graph is never a multigraph: one edge per pair).
13
+ *
14
+ * Both keys are package-relative strings compared by code unit, so they are the same on every
15
+ * machine and in every checkout location.
16
+ */
17
+ export declare class CanonicalSourceGraph {
18
+ /** A copy of `graph` whose node and edge order is canonical. */
19
+ static of(graph: Graph): Graph;
20
+ private static nodeOrder;
21
+ private static edgeOrder;
22
+ }
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
3
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
4
+ if (ar || !(i in from)) {
5
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
6
+ ar[i] = from[i];
7
+ }
8
+ }
9
+ return to.concat(ar || Array.prototype.slice.call(from));
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.CanonicalSourceGraph = void 0;
13
+ var graphlib_1 = require("@dagrejs/graphlib");
14
+ var PackageSourceFiles_1 = require("../parser/PackageSourceFiles");
15
+ /**
16
+ * The emitted form of a source graph: the same nodes, values and edges, in an order that is a
17
+ * function of the graph's content alone — never of the order the builder happened to visit the
18
+ * sources or insert placeholder parents. The generated index serializes nodes and edges in
19
+ * insertion order, so this order is the artifact's byte order (and the runtime's `objects()`
20
+ * order within one package).
21
+ *
22
+ * - Nodes by the declaring file's package-relative path, then by qualified name. A placeholder
23
+ * (a parent referenced here but declared elsewhere) has no file and sorts by name ahead of
24
+ * the declared nodes.
25
+ * - Edges by child, then parent (a source graph is never a multigraph: one edge per pair).
26
+ *
27
+ * Both keys are package-relative strings compared by code unit, so they are the same on every
28
+ * machine and in every checkout location.
29
+ */
30
+ var CanonicalSourceGraph = /** @class */ (function () {
31
+ function CanonicalSourceGraph() {
32
+ }
33
+ /** A copy of `graph` whose node and edge order is canonical. */
34
+ CanonicalSourceGraph.of = function (graph) {
35
+ var canonical = new graphlib_1.Graph({
36
+ directed: graph.isDirected(),
37
+ multigraph: graph.isMultigraph(),
38
+ compound: graph.isCompound(),
39
+ });
40
+ for (var _i = 0, _a = CanonicalSourceGraph.nodeOrder(graph); _i < _a.length; _i++) {
41
+ var nodeName = _a[_i];
42
+ canonical.setNode(nodeName, graph.node(nodeName));
43
+ }
44
+ for (var _b = 0, _c = CanonicalSourceGraph.edgeOrder(graph); _b < _c.length; _b++) {
45
+ var edge = _c[_b];
46
+ canonical.setEdge(edge, graph.edge(edge));
47
+ }
48
+ return canonical;
49
+ };
50
+ CanonicalSourceGraph.nodeOrder = function (graph) {
51
+ var fileOf = function (nodeName) { var _a; return ((_a = graph.node(nodeName)) === null || _a === void 0 ? void 0 : _a.filePath) || ''; };
52
+ return __spreadArray([], graph.nodes(), true).sort(function (a, b) { return PackageSourceFiles_1.PackageSourceFiles.compare(fileOf(a), fileOf(b)) || PackageSourceFiles_1.PackageSourceFiles.compare(a, b); });
53
+ };
54
+ CanonicalSourceGraph.edgeOrder = function (graph) {
55
+ return __spreadArray([], graph.edges(), true).sort(function (a, b) { return PackageSourceFiles_1.PackageSourceFiles.compare(a.v, b.v) || PackageSourceFiles_1.PackageSourceFiles.compare(a.w, b.w); });
56
+ };
57
+ return CanonicalSourceGraph;
58
+ }());
59
+ exports.CanonicalSourceGraph = CanonicalSourceGraph;
60
+ //# sourceMappingURL=CanonicalSourceGraph.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CanonicalSourceGraph.js","sourceRoot":"","sources":["../../../../../../src/codegen/CanonicalSourceGraph.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,8CAAgD;AAChD,mEAAkE;AAElE;;;;;;;;;;;;;;GAcG;AACH;IAAA;IA+BA,CAAC;IA9BC,gEAAgE;IACzD,uBAAE,GAAT,UAAU,KAAY;QACpB,IAAM,SAAS,GAAG,IAAI,gBAAK,CAAC;YAC1B,QAAQ,EAAE,KAAK,CAAC,UAAU,EAAE;YAC5B,UAAU,EAAE,KAAK,CAAC,YAAY,EAAE;YAChC,QAAQ,EAAE,KAAK,CAAC,UAAU,EAAE;SAC7B,CAAC,CAAC;QACH,KAAuB,UAAqC,EAArC,KAAA,oBAAoB,CAAC,SAAS,CAAC,KAAK,CAAC,EAArC,cAAqC,EAArC,IAAqC,EAAE;YAAzD,IAAM,QAAQ,SAAA;YACjB,SAAS,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC;SACnD;QAED,KAAmB,UAAqC,EAArC,KAAA,oBAAoB,CAAC,SAAS,CAAC,KAAK,CAAC,EAArC,cAAqC,EAArC,IAAqC,EAAE;YAArD,IAAM,IAAI,SAAA;YACb,SAAS,CAAC,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;SAC3C;QAED,OAAO,SAAS,CAAC;IACnB,CAAC;IAEc,8BAAS,GAAxB,UAAyB,KAAY;QACnC,IAAM,MAAM,GAAG,UAAC,QAAgB,YAAa,OAAA,CAAA,MAAA,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,0CAAE,QAAQ,KAAI,EAAE,CAAA,EAAA,CAAC;QAClF,OAAO,kBAAI,KAAK,CAAC,KAAK,EAAE,QAAE,IAAI,CAC5B,UAAC,CAAC,EAAE,CAAC,IAAK,OAAA,uCAAkB,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,uCAAkB,CAAC,OAAO,CAAC,CAAC,EAAE,CAAC,CAAC,EAApF,CAAoF,CAC/F,CAAC;IACJ,CAAC;IAEc,8BAAS,GAAxB,UAAyB,KAAY;QACnC,OAAO,kBAAI,KAAK,CAAC,KAAK,EAAE,QAAE,IAAI,CAC5B,UAAC,CAAC,EAAE,CAAC,IAAK,OAAA,uCAAkB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,IAAI,uCAAkB,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,EAA5E,CAA4E,CACvF,CAAC;IACJ,CAAC;IACH,2BAAC;AAAD,CAAC,AA/BD,IA+BC;AA/BY,oDAAoB"}
@@ -1,4 +1,5 @@
1
1
  import { Graph } from '@dagrejs/graphlib';
2
+ import { SharedQualifiedName } from '../parser/SharedQualifiedNames';
2
3
  /**
3
4
  * @param packageDir Root of the package (contains package.json)
4
5
  * @param packageGeneratedDir Directory where generated/index.ts will be written
@@ -27,9 +28,17 @@ export declare function findDependencySourceGraph(packageDir: string, packageNam
27
28
  * consuming package — npm-layout resolution: the nearest installed copy shadows hoisted ones.
28
29
  */
29
30
  export declare function findDependencyDir(packageDir: string, packageName: string): string | undefined;
31
+ export interface EmittedSourceGraph {
32
+ /** The pruned graph in canonical order: what the generated index serializes. */
33
+ graph: Graph;
34
+ /** The names in `graph` that two or more source files declare; the build refuses to emit while there is one. */
35
+ sharedNames: SharedQualifiedName[];
36
+ }
30
37
  /**
31
38
  * The graph exactly as a build emits it: parsed from the package's source roots, with
32
- * build-time-non-loadable declarations pruned. Owned here so build emit and diagnostic
33
- * tooling (reflection-doctor drift checks) share one pipeline.
39
+ * build-time-non-loadable declarations pruned, in canonical order (the serialized graph and
40
+ * the source links follow it, so the same sources emit the same bytes on every machine), and
41
+ * the names in it that more than one file declares. Owned here so build emit and diagnostic
42
+ * tooling (reflection-doctor drift and shared-name checks) share one pipeline.
34
43
  */
35
- export declare function createEmittedSourceGraph(packageDir: string, sourceRootsRel: string[]): Promise<Graph>;
44
+ export declare function createEmittedSourceGraph(packageDir: string, sourceRootsRel: string[]): Promise<EmittedSourceGraph>;