@proteinjs/reflection-build 1.1.1 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (303) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/src/codegen/writeGeneratedIndex.js +9 -0
  3. package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
  4. package/dist/test/examples/source-repository/a/generated/index.js +1 -1
  5. package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
  6. package/dist/test/examples/source-repository/b/generated/index.js +1 -1
  7. package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
  8. package/package.json +4 -5
  9. package/src/codegen/writeGeneratedIndex.ts +12 -0
  10. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +9 -0
  11. package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
  12. package/test/examples/source-repository/a/dist/generated/index.js +1 -1
  13. package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
  14. package/test/examples/source-repository/a/generated/index.ts +33 -38
  15. package/test/examples/source-repository/a/node_modules/.package-lock.json +59 -6
  16. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
  17. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierignore +4 -0
  18. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierrc +8 -0
  19. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
  20. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
  21. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js +18 -0
  22. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
  23. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
  24. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
  25. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
  26. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
  27. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
  28. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
  29. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
  30. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
  31. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
  32. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
  33. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
  34. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
  35. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
  36. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
  37. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
  38. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
  39. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
  40. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
  41. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/index.ts +5 -0
  42. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/jest.config.js +9 -0
  43. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/package.json +42 -0
  44. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
  45. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
  46. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
  47. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
  48. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
  49. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/types.ts +236 -0
  50. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
  51. package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
  52. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
  53. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
  54. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
  55. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  56. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
  57. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
  58. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
  59. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
  60. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
  61. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
  62. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +2 -2
  63. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
  64. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
  65. package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
  66. package/test/examples/source-repository/a/node_modules/bindings/LICENSE.md +22 -0
  67. package/test/examples/source-repository/a/node_modules/bindings/README.md +98 -0
  68. package/test/examples/source-repository/a/node_modules/bindings/bindings.js +221 -0
  69. package/test/examples/source-repository/a/node_modules/bindings/package.json +28 -0
  70. package/test/examples/source-repository/a/node_modules/file-uri-to-path/.travis.yml +30 -0
  71. package/test/examples/source-repository/a/node_modules/file-uri-to-path/History.md +21 -0
  72. package/test/examples/source-repository/a/node_modules/file-uri-to-path/LICENSE +20 -0
  73. package/test/examples/source-repository/a/node_modules/file-uri-to-path/README.md +74 -0
  74. package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.d.ts +2 -0
  75. package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.js +66 -0
  76. package/test/examples/source-repository/a/node_modules/file-uri-to-path/package.json +32 -0
  77. package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/test.js +24 -0
  78. package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/tests.json +13 -0
  79. package/test/examples/source-repository/a/node_modules/fsevents/LICENSE +22 -0
  80. package/test/examples/source-repository/a/node_modules/fsevents/README.md +89 -0
  81. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.d.ts +46 -0
  82. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.js +83 -0
  83. package/test/examples/source-repository/a/node_modules/fsevents/fsevents.node +0 -0
  84. package/test/examples/source-repository/a/node_modules/fsevents/package.json +62 -0
  85. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
  86. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
  87. package/{LICENSE → test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/LICENSE} +6 -5
  88. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
  89. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
  90. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
  91. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
  92. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  93. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
  94. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
  95. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
  96. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
  97. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
  98. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
  99. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
  100. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
  101. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
  102. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
  103. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
  104. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
  105. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
  106. package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
  107. package/test/examples/source-repository/a/node_modules/nan/CHANGELOG.md +557 -0
  108. package/test/examples/source-repository/a/node_modules/nan/CMakeLists.txt +138 -0
  109. package/test/examples/source-repository/a/node_modules/nan/LICENSE.md +9 -0
  110. package/test/examples/source-repository/a/node_modules/nan/README.md +456 -0
  111. package/test/examples/source-repository/a/node_modules/nan/doc/asyncworker.md +146 -0
  112. package/test/examples/source-repository/a/node_modules/nan/doc/buffers.md +54 -0
  113. package/test/examples/source-repository/a/node_modules/nan/doc/callback.md +76 -0
  114. package/test/examples/source-repository/a/node_modules/nan/doc/converters.md +41 -0
  115. package/test/examples/source-repository/a/node_modules/nan/doc/errors.md +226 -0
  116. package/test/examples/source-repository/a/node_modules/nan/doc/json.md +62 -0
  117. package/test/examples/source-repository/a/node_modules/nan/doc/maybe_types.md +583 -0
  118. package/test/examples/source-repository/a/node_modules/nan/doc/methods.md +672 -0
  119. package/test/examples/source-repository/a/node_modules/nan/doc/new.md +147 -0
  120. package/test/examples/source-repository/a/node_modules/nan/doc/node_misc.md +123 -0
  121. package/test/examples/source-repository/a/node_modules/nan/doc/object_wrappers.md +263 -0
  122. package/test/examples/source-repository/a/node_modules/nan/doc/persistent.md +296 -0
  123. package/test/examples/source-repository/a/node_modules/nan/doc/scopes.md +73 -0
  124. package/test/examples/source-repository/a/node_modules/nan/doc/script.md +58 -0
  125. package/test/examples/source-repository/a/node_modules/nan/doc/string_bytes.md +62 -0
  126. package/test/examples/source-repository/a/node_modules/nan/doc/v8_internals.md +199 -0
  127. package/test/examples/source-repository/a/node_modules/nan/doc/v8_misc.md +85 -0
  128. package/test/examples/source-repository/a/node_modules/nan/include_dirs.js +1 -0
  129. package/test/examples/source-repository/a/node_modules/nan/nan.h +2958 -0
  130. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks.h +92 -0
  131. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_12_inl.h +520 -0
  132. package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
  133. package/test/examples/source-repository/a/node_modules/nan/nan_converters.h +72 -0
  134. package/test/examples/source-repository/a/node_modules/nan/nan_converters_43_inl.h +68 -0
  135. package/test/examples/source-repository/a/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  136. package/test/examples/source-repository/a/node_modules/nan/nan_define_own_property_helper.h +29 -0
  137. package/test/examples/source-repository/a/node_modules/nan/nan_implementation_12_inl.h +430 -0
  138. package/test/examples/source-repository/a/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
  139. package/test/examples/source-repository/a/node_modules/nan/nan_json.h +166 -0
  140. package/test/examples/source-repository/a/node_modules/nan/nan_maybe_43_inl.h +356 -0
  141. package/test/examples/source-repository/a/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
  142. package/test/examples/source-repository/a/node_modules/nan/nan_new.h +340 -0
  143. package/test/examples/source-repository/a/node_modules/nan/nan_object_wrap.h +156 -0
  144. package/test/examples/source-repository/a/node_modules/nan/nan_persistent_12_inl.h +132 -0
  145. package/test/examples/source-repository/a/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  146. package/test/examples/source-repository/a/node_modules/nan/nan_private.h +73 -0
  147. package/test/examples/source-repository/a/node_modules/nan/nan_scriptorigin.h +76 -0
  148. package/test/examples/source-repository/a/node_modules/nan/nan_string_bytes.h +305 -0
  149. package/test/examples/source-repository/a/node_modules/nan/nan_typedarray_contents.h +96 -0
  150. package/test/examples/source-repository/a/node_modules/nan/nan_weak.h +437 -0
  151. package/test/examples/source-repository/a/node_modules/nan/package.json +38 -0
  152. package/test/examples/source-repository/a/node_modules/nan/tools/1to2.js +412 -0
  153. package/test/examples/source-repository/a/node_modules/nan/tools/README.md +14 -0
  154. package/test/examples/source-repository/a/node_modules/nan/tools/package.json +19 -0
  155. package/test/examples/source-repository/a/package-lock.json +8 -8
  156. package/test/examples/source-repository/a/package.json +3 -3
  157. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +9 -0
  158. package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
  159. package/test/examples/source-repository/b/dist/generated/index.js +1 -1
  160. package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
  161. package/test/examples/source-repository/b/generated/index.ts +11 -10
  162. package/test/examples/source-repository/b/node_modules/.package-lock.json +57 -4
  163. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
  164. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierignore +4 -0
  165. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierrc +8 -0
  166. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
  167. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
  168. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js +18 -0
  169. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
  170. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
  171. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
  172. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
  173. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
  174. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
  175. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
  176. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
  177. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
  178. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
  179. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
  180. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
  181. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
  182. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
  183. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
  184. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
  185. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
  186. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
  187. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
  188. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/index.ts +5 -0
  189. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/jest.config.js +9 -0
  190. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/package.json +42 -0
  191. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
  192. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
  193. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
  194. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
  195. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
  196. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/types.ts +236 -0
  197. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
  198. package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
  199. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +13 -0
  200. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.d.ts +23 -0
  201. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js +67 -0
  202. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/Fs.js.map +1 -1
  203. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.d.ts +297 -10
  204. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js +349 -112
  205. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/GitUtil.js.map +1 -1
  206. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.d.ts +10 -1
  207. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js +91 -48
  208. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/cmd.js.map +1 -1
  209. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +2 -2
  210. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/Fs.ts +75 -0
  211. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/GitUtil.ts +248 -110
  212. package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/cmd.ts +84 -59
  213. package/test/examples/source-repository/b/node_modules/bindings/LICENSE.md +22 -0
  214. package/test/examples/source-repository/b/node_modules/bindings/README.md +98 -0
  215. package/test/examples/source-repository/b/node_modules/bindings/bindings.js +221 -0
  216. package/test/examples/source-repository/b/node_modules/bindings/package.json +28 -0
  217. package/test/examples/source-repository/b/node_modules/file-uri-to-path/.travis.yml +30 -0
  218. package/test/examples/source-repository/b/node_modules/file-uri-to-path/History.md +21 -0
  219. package/test/examples/source-repository/b/node_modules/file-uri-to-path/LICENSE +20 -0
  220. package/test/examples/source-repository/b/node_modules/file-uri-to-path/README.md +74 -0
  221. package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.d.ts +2 -0
  222. package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.js +66 -0
  223. package/test/examples/source-repository/b/node_modules/file-uri-to-path/package.json +32 -0
  224. package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/test.js +24 -0
  225. package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/tests.json +13 -0
  226. package/test/examples/source-repository/b/node_modules/fsevents/LICENSE +22 -0
  227. package/test/examples/source-repository/b/node_modules/fsevents/README.md +89 -0
  228. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.d.ts +46 -0
  229. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.js +83 -0
  230. package/test/examples/source-repository/b/node_modules/fsevents/fsevents.node +0 -0
  231. package/test/examples/source-repository/b/node_modules/fsevents/package.json +62 -0
  232. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
  233. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
  234. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/LICENSE +22 -0
  235. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
  236. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
  237. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
  238. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
  239. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  240. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d.raw +75 -0
  241. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
  242. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
  243. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
  244. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
  245. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
  246. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
  247. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
  248. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
  249. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
  250. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
  251. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
  252. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
  253. package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
  254. package/test/examples/source-repository/b/node_modules/nan/CHANGELOG.md +557 -0
  255. package/test/examples/source-repository/b/node_modules/nan/CMakeLists.txt +138 -0
  256. package/test/examples/source-repository/b/node_modules/nan/LICENSE.md +9 -0
  257. package/test/examples/source-repository/b/node_modules/nan/README.md +456 -0
  258. package/test/examples/source-repository/b/node_modules/nan/doc/asyncworker.md +146 -0
  259. package/test/examples/source-repository/b/node_modules/nan/doc/buffers.md +54 -0
  260. package/test/examples/source-repository/b/node_modules/nan/doc/callback.md +76 -0
  261. package/test/examples/source-repository/b/node_modules/nan/doc/converters.md +41 -0
  262. package/test/examples/source-repository/b/node_modules/nan/doc/errors.md +226 -0
  263. package/test/examples/source-repository/b/node_modules/nan/doc/json.md +62 -0
  264. package/test/examples/source-repository/b/node_modules/nan/doc/maybe_types.md +583 -0
  265. package/test/examples/source-repository/b/node_modules/nan/doc/methods.md +672 -0
  266. package/test/examples/source-repository/b/node_modules/nan/doc/new.md +147 -0
  267. package/test/examples/source-repository/b/node_modules/nan/doc/node_misc.md +123 -0
  268. package/test/examples/source-repository/b/node_modules/nan/doc/object_wrappers.md +263 -0
  269. package/test/examples/source-repository/b/node_modules/nan/doc/persistent.md +296 -0
  270. package/test/examples/source-repository/b/node_modules/nan/doc/scopes.md +73 -0
  271. package/test/examples/source-repository/b/node_modules/nan/doc/script.md +58 -0
  272. package/test/examples/source-repository/b/node_modules/nan/doc/string_bytes.md +62 -0
  273. package/test/examples/source-repository/b/node_modules/nan/doc/v8_internals.md +199 -0
  274. package/test/examples/source-repository/b/node_modules/nan/doc/v8_misc.md +85 -0
  275. package/test/examples/source-repository/b/node_modules/nan/include_dirs.js +1 -0
  276. package/test/examples/source-repository/b/node_modules/nan/nan.h +2958 -0
  277. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks.h +92 -0
  278. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_12_inl.h +520 -0
  279. package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
  280. package/test/examples/source-repository/b/node_modules/nan/nan_converters.h +72 -0
  281. package/test/examples/source-repository/b/node_modules/nan/nan_converters_43_inl.h +68 -0
  282. package/test/examples/source-repository/b/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
  283. package/test/examples/source-repository/b/node_modules/nan/nan_define_own_property_helper.h +29 -0
  284. package/test/examples/source-repository/b/node_modules/nan/nan_implementation_12_inl.h +430 -0
  285. package/test/examples/source-repository/b/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
  286. package/test/examples/source-repository/b/node_modules/nan/nan_json.h +166 -0
  287. package/test/examples/source-repository/b/node_modules/nan/nan_maybe_43_inl.h +356 -0
  288. package/test/examples/source-repository/b/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
  289. package/test/examples/source-repository/b/node_modules/nan/nan_new.h +340 -0
  290. package/test/examples/source-repository/b/node_modules/nan/nan_object_wrap.h +156 -0
  291. package/test/examples/source-repository/b/node_modules/nan/nan_persistent_12_inl.h +132 -0
  292. package/test/examples/source-repository/b/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
  293. package/test/examples/source-repository/b/node_modules/nan/nan_private.h +73 -0
  294. package/test/examples/source-repository/b/node_modules/nan/nan_scriptorigin.h +76 -0
  295. package/test/examples/source-repository/b/node_modules/nan/nan_string_bytes.h +305 -0
  296. package/test/examples/source-repository/b/node_modules/nan/nan_typedarray_contents.h +96 -0
  297. package/test/examples/source-repository/b/node_modules/nan/nan_weak.h +437 -0
  298. package/test/examples/source-repository/b/node_modules/nan/package.json +38 -0
  299. package/test/examples/source-repository/b/node_modules/nan/tools/1to2.js +412 -0
  300. package/test/examples/source-repository/b/node_modules/nan/tools/README.md +14 -0
  301. package/test/examples/source-repository/b/node_modules/nan/tools/package.json +19 -0
  302. package/test/examples/source-repository/b/package-lock.json +6 -6
  303. package/test/examples/source-repository/b/package.json +3 -3
@@ -0,0 +1,234 @@
1
+ "use strict";
2
+ var __extends = (this && this.__extends) || (function () {
3
+ var extendStatics = function (d, b) {
4
+ extendStatics = Object.setPrototypeOf ||
5
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
6
+ function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
7
+ return extendStatics(d, b);
8
+ };
9
+ return function (d, b) {
10
+ extendStatics(d, b);
11
+ function __() { this.constructor = d; }
12
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
13
+ };
14
+ })();
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.InterfaceDeclaration = exports.ClassDeclaration = exports.TypeAliasDeclaration = exports.VariableDeclaration = exports.Parameter = exports.Property = exports.Method = exports.Interface = exports.Class = exports.TypeAlias = exports.Variable = exports.PackageScope = void 0;
17
+ var PackageScope = /** @class */ (function () {
18
+ function PackageScope(packageName, name, filePath) {
19
+ this.packageName = packageName;
20
+ this.name = name;
21
+ this.filePath = filePath;
22
+ this.qualifiedName = packageName + "/" + name;
23
+ }
24
+ return PackageScope;
25
+ }());
26
+ exports.PackageScope = PackageScope;
27
+ var Variable = /** @class */ (function (_super) {
28
+ __extends(Variable, _super);
29
+ function Variable(packageName, name, filePath, isExported, isConst, value, typeParameters, directParentTypes, allParentTypes, rootParentTypes) {
30
+ if (typeParameters === void 0) { typeParameters = {}; }
31
+ if (directParentTypes === void 0) { directParentTypes = {}; }
32
+ if (allParentTypes === void 0) { allParentTypes = {}; }
33
+ if (rootParentTypes === void 0) { rootParentTypes = {}; }
34
+ var _this = _super.call(this, packageName, name, filePath) || this;
35
+ _this.isExported = isExported;
36
+ _this.isConst = isConst;
37
+ _this.value = value;
38
+ _this.typeParameters = typeParameters;
39
+ _this.directParentTypes = directParentTypes;
40
+ _this.allParentTypes = allParentTypes;
41
+ _this.rootParentTypes = rootParentTypes;
42
+ return _this;
43
+ }
44
+ return Variable;
45
+ }(PackageScope));
46
+ exports.Variable = Variable;
47
+ var TypeAlias = /** @class */ (function (_super) {
48
+ __extends(TypeAlias, _super);
49
+ function TypeAlias(packageName, name, filePath, typeParameters, directParents, allParents, rootParents, directChildren, allChildren, baseChildren) {
50
+ if (typeParameters === void 0) { typeParameters = {}; }
51
+ if (directParents === void 0) { directParents = {}; }
52
+ if (allParents === void 0) { allParents = {}; }
53
+ if (rootParents === void 0) { rootParents = {}; }
54
+ if (directChildren === void 0) { directChildren = {}; }
55
+ if (allChildren === void 0) { allChildren = {}; }
56
+ if (baseChildren === void 0) { baseChildren = {}; }
57
+ var _this = _super.call(this, packageName, name, filePath) || this;
58
+ _this.typeParameters = typeParameters;
59
+ _this.directParents = directParents;
60
+ _this.allParents = allParents;
61
+ _this.rootParents = rootParents;
62
+ _this.directChildren = directChildren;
63
+ _this.allChildren = allChildren;
64
+ _this.baseChildren = baseChildren;
65
+ return _this;
66
+ }
67
+ return TypeAlias;
68
+ }(PackageScope));
69
+ exports.TypeAlias = TypeAlias;
70
+ var Class = /** @class */ (function (_super) {
71
+ __extends(Class, _super);
72
+ function Class(packageName, name, filePath, isAbstract, isStatic, visibility, properties, methods, _constructor, directParents, typeParameters, allParents, rootParents, directChildren, allChildren, baseChildren) {
73
+ if (directParents === void 0) { directParents = {}; }
74
+ if (typeParameters === void 0) { typeParameters = {}; }
75
+ if (allParents === void 0) { allParents = {}; }
76
+ if (rootParents === void 0) { rootParents = {}; }
77
+ if (directChildren === void 0) { directChildren = {}; }
78
+ if (allChildren === void 0) { allChildren = {}; }
79
+ if (baseChildren === void 0) { baseChildren = {}; }
80
+ var _this = _super.call(this, packageName, name, filePath) || this;
81
+ _this.isAbstract = isAbstract;
82
+ _this.isStatic = isStatic;
83
+ _this.visibility = visibility;
84
+ _this.properties = properties;
85
+ _this.methods = methods;
86
+ _this._constructor = _constructor;
87
+ _this.directParents = directParents;
88
+ _this.typeParameters = typeParameters;
89
+ _this.allParents = allParents;
90
+ _this.rootParents = rootParents;
91
+ _this.directChildren = directChildren;
92
+ _this.allChildren = allChildren;
93
+ _this.baseChildren = baseChildren;
94
+ return _this;
95
+ }
96
+ return Class;
97
+ }(PackageScope));
98
+ exports.Class = Class;
99
+ var Interface = /** @class */ (function (_super) {
100
+ __extends(Interface, _super);
101
+ function Interface(packageName, name, properties, methods, filePath, typeParameters, directParents, allParents, rootParents, directChildren, allChildren, baseChildren) {
102
+ if (typeParameters === void 0) { typeParameters = {}; }
103
+ if (directParents === void 0) { directParents = {}; }
104
+ if (allParents === void 0) { allParents = {}; }
105
+ if (rootParents === void 0) { rootParents = {}; }
106
+ if (directChildren === void 0) { directChildren = {}; }
107
+ if (allChildren === void 0) { allChildren = {}; }
108
+ if (baseChildren === void 0) { baseChildren = {}; }
109
+ var _this = _super.call(this, packageName, name, filePath) || this;
110
+ _this.properties = properties;
111
+ _this.methods = methods;
112
+ _this.typeParameters = typeParameters;
113
+ _this.directParents = directParents;
114
+ _this.allParents = allParents;
115
+ _this.rootParents = rootParents;
116
+ _this.directChildren = directChildren;
117
+ _this.allChildren = allChildren;
118
+ _this.baseChildren = baseChildren;
119
+ return _this;
120
+ }
121
+ return Interface;
122
+ }(PackageScope));
123
+ exports.Interface = Interface;
124
+ var Method = /** @class */ (function () {
125
+ function Method(name, returnType, isAsync, isOptional, isAbstract, isStatic, visibility, parameters
126
+ // public readonly variables: VariableDeclaration[]
127
+ ) {
128
+ this.name = name;
129
+ this.returnType = returnType;
130
+ this.isAsync = isAsync;
131
+ this.isOptional = isOptional;
132
+ this.isAbstract = isAbstract;
133
+ this.isStatic = isStatic;
134
+ this.visibility = visibility;
135
+ this.parameters = parameters;
136
+ }
137
+ return Method;
138
+ }());
139
+ exports.Method = Method;
140
+ var Property = /** @class */ (function () {
141
+ function Property(name, type, isOptional, isAbstract, isStatic, visibility) {
142
+ this.name = name;
143
+ this.type = type;
144
+ this.isOptional = isOptional;
145
+ this.isAbstract = isAbstract;
146
+ this.isStatic = isStatic;
147
+ this.visibility = visibility;
148
+ }
149
+ return Property;
150
+ }());
151
+ exports.Property = Property;
152
+ var Parameter = /** @class */ (function () {
153
+ function Parameter(name, type
154
+ // public readonly isOptional: boolean
155
+ ) {
156
+ this.name = name;
157
+ this.type = type;
158
+ }
159
+ return Parameter;
160
+ }());
161
+ exports.Parameter = Parameter;
162
+ /**
163
+ * Declarations are intermediary types created by the parser. They do not contain the deeply-nested, relational
164
+ * information possible at runtime.
165
+ *
166
+ * Note: The declaration types specified in typescript-parser are not used because they are not package-scoped.
167
+ * The typescript-parser package is a file-level parser, and reflection is a package-level parser.
168
+ */
169
+ var VariableDeclaration = /** @class */ (function (_super) {
170
+ __extends(VariableDeclaration, _super);
171
+ function VariableDeclaration(packageName, name, filePath, type, isExported, isConst) {
172
+ var _this = _super.call(this, packageName, name, filePath) || this;
173
+ _this.type = type;
174
+ _this.isExported = isExported;
175
+ _this.isConst = isConst;
176
+ return _this;
177
+ }
178
+ VariableDeclaration.deserialize = function (json) {
179
+ return new VariableDeclaration(json.packageName, json.name, json.filePath, json.type, json.isExported, json.isConst);
180
+ };
181
+ return VariableDeclaration;
182
+ }(PackageScope));
183
+ exports.VariableDeclaration = VariableDeclaration;
184
+ var TypeAliasDeclaration = /** @class */ (function (_super) {
185
+ __extends(TypeAliasDeclaration, _super);
186
+ function TypeAliasDeclaration(packageName, name, typeParameters, directParents, filePath) {
187
+ var _this = _super.call(this, packageName, name, filePath) || this;
188
+ _this.typeParameters = typeParameters;
189
+ _this.directParents = directParents;
190
+ return _this;
191
+ }
192
+ TypeAliasDeclaration.deserialize = function (json) {
193
+ return new TypeAliasDeclaration(json.packageName, json.name, json.typeParameters, json.directParents, json.filePath);
194
+ };
195
+ return TypeAliasDeclaration;
196
+ }(PackageScope));
197
+ exports.TypeAliasDeclaration = TypeAliasDeclaration;
198
+ var ClassDeclaration = /** @class */ (function (_super) {
199
+ __extends(ClassDeclaration, _super);
200
+ function ClassDeclaration(packageName, name, isAbstract, isStatic, visibility, properties, methods, typeParameters, directParentInterfaces, directParentClasses, filePath) {
201
+ var _this = _super.call(this, packageName, name, filePath) || this;
202
+ _this.isAbstract = isAbstract;
203
+ _this.isStatic = isStatic;
204
+ _this.visibility = visibility;
205
+ _this.properties = properties;
206
+ _this.methods = methods;
207
+ _this.typeParameters = typeParameters;
208
+ _this.directParentInterfaces = directParentInterfaces;
209
+ _this.directParentClasses = directParentClasses;
210
+ return _this;
211
+ }
212
+ ClassDeclaration.deserialize = function (json) {
213
+ return new ClassDeclaration(json.packageName, json.name, json.isAbstract, json.isStatic, json.visibility, json.properties, json.methods, json.typeParameters, json.directParentInterfaces, json.directParentClasses, json.filePath);
214
+ };
215
+ return ClassDeclaration;
216
+ }(PackageScope));
217
+ exports.ClassDeclaration = ClassDeclaration;
218
+ var InterfaceDeclaration = /** @class */ (function (_super) {
219
+ __extends(InterfaceDeclaration, _super);
220
+ function InterfaceDeclaration(packageName, name, properties, methods, typeParameters, directParents, filePath) {
221
+ var _this = _super.call(this, packageName, name, filePath) || this;
222
+ _this.properties = properties;
223
+ _this.methods = methods;
224
+ _this.typeParameters = typeParameters;
225
+ _this.directParents = directParents;
226
+ return _this;
227
+ }
228
+ InterfaceDeclaration.deserialize = function (json) {
229
+ return new InterfaceDeclaration(json.packageName, json.name, json.properties, json.methods, json.typeParameters, json.directParents, json.filePath);
230
+ };
231
+ return InterfaceDeclaration;
232
+ }(PackageScope));
233
+ exports.InterfaceDeclaration = InterfaceDeclaration;
234
+ //# sourceMappingURL=types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/types.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ export * from './src/Loadable';
2
+ export * from './src/types';
3
+ export * from './src/sourceGraphTypes';
4
+ export * from './src/SourceRepository';
5
+ export * from './src/SourceRepositoryFilter';
@@ -0,0 +1,9 @@
1
+ module.exports = {
2
+ roots: ['<rootDir>/test'],
3
+ transform: {
4
+ '^.+\\.tsx?$': 'ts-jest',
5
+ },
6
+ testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$',
7
+ moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
8
+ testEnvironment: 'node',
9
+ };
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "@proteinjs/reflection",
3
+ "version": "1.1.10",
4
+ "description": "Source introspection and loader apis",
5
+ "main": "./dist/index.js",
6
+ "types": "./dist/index.d.ts",
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/proteinjs/reflection.git"
13
+ },
14
+ "bugs": {
15
+ "url": "https://github.com/proteinjs/reflection/issues"
16
+ },
17
+ "homepage": "https://github.com/proteinjs/reflection#readme",
18
+ "author": "Brent Bahry",
19
+ "license": "ISC",
20
+ "scripts": {
21
+ "clean": "rm -rf dist/ node_modules/",
22
+ "build": "tsc",
23
+ "watch": "tsc -w -p ."
24
+ },
25
+ "dependencies": {
26
+ "@dagrejs/graphlib": "2.1.4",
27
+ "@proteinjs/util": "1.5.0"
28
+ },
29
+ "devDependencies": {
30
+ "@types/graphlib": "2.1.6",
31
+ "@types/jest": "^26.0.0",
32
+ "@types/node": "14.0.13",
33
+ "@typescript-eslint/eslint-plugin": "7.8.0",
34
+ "@typescript-eslint/parser": "7.8.0",
35
+ "eslint": "8.57.0",
36
+ "eslint-config-prettier": "9.1.0",
37
+ "eslint-plugin-prettier": "5.1.3",
38
+ "jest": "^26.0.1",
39
+ "ts-jest": "^26.1.0",
40
+ "typescript": "3.9.5"
41
+ }
42
+ }