@proteinjs/reflection-build 1.3.0 → 1.4.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.
- package/CHANGELOG.md +11 -0
- package/dist/src/build.js +6 -5
- package/dist/src/build.js.map +1 -1
- package/dist/src/codegen/writeGeneratedIndex.d.ts +8 -5
- package/dist/src/codegen/writeGeneratedIndex.js +35 -12
- package/dist/src/codegen/writeGeneratedIndex.js.map +1 -1
- package/dist/test/examples/source-repository/a/generated/index.js +1 -1
- package/dist/test/examples/source-repository/a/generated/index.js.map +1 -1
- package/dist/test/examples/source-repository/b/generated/index.js +1 -1
- package/dist/test/examples/source-repository/b/generated/index.js.map +1 -1
- package/package.json +4 -5
- package/src/build.ts +13 -6
- package/src/codegen/writeGeneratedIndex.ts +42 -8
- package/test/examples/source-repository/a/dist/build.js +6 -5
- package/test/examples/source-repository/a/dist/build.js.map +1 -1
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.d.ts +8 -5
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js +35 -12
- package/test/examples/source-repository/a/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/a/dist/generated/index.js +1 -1
- package/test/examples/source-repository/a/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/a/generated/index.ts +33 -38
- package/test/examples/source-repository/a/node_modules/.package-lock.json +59 -6
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierignore +4 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/.prettierrc +8 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js +18 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/index.ts +5 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/jest.config.js +9 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/package.json +42 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/src/types.ts +236 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +4 -4
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +8 -20
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/package.json +2 -2
- package/test/examples/source-repository/a/node_modules/@proteinjs/util-node/src/PackageUtil.ts +4 -8
- package/test/examples/source-repository/a/node_modules/bindings/LICENSE.md +22 -0
- package/test/examples/source-repository/a/node_modules/bindings/README.md +98 -0
- package/test/examples/source-repository/a/node_modules/bindings/bindings.js +221 -0
- package/test/examples/source-repository/a/node_modules/bindings/package.json +28 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/History.md +21 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/LICENSE +20 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/README.md +74 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/index.js +66 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/package.json +32 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/test.js +24 -0
- package/test/examples/source-repository/a/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/test/examples/source-repository/a/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/a/node_modules/fsevents/README.md +89 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.d.ts +46 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.js +83 -0
- package/test/examples/source-repository/a/node_modules/fsevents/fsevents.node +0 -0
- package/test/examples/source-repository/a/node_modules/fsevents/package.json +62 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
- package/{LICENSE → test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/LICENSE} +6 -5
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
- 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
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
- package/test/examples/source-repository/a/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
- package/test/examples/source-repository/a/node_modules/nan/CHANGELOG.md +557 -0
- package/test/examples/source-repository/a/node_modules/nan/CMakeLists.txt +138 -0
- package/test/examples/source-repository/a/node_modules/nan/LICENSE.md +9 -0
- package/test/examples/source-repository/a/node_modules/nan/README.md +456 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/asyncworker.md +146 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/buffers.md +54 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/callback.md +76 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/converters.md +41 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/errors.md +226 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/json.md +62 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/maybe_types.md +583 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/methods.md +672 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/new.md +147 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/node_misc.md +123 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/object_wrappers.md +263 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/persistent.md +296 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/scopes.md +73 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/script.md +58 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/string_bytes.md +62 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/v8_internals.md +199 -0
- package/test/examples/source-repository/a/node_modules/nan/doc/v8_misc.md +85 -0
- package/test/examples/source-repository/a/node_modules/nan/include_dirs.js +1 -0
- package/test/examples/source-repository/a/node_modules/nan/nan.h +2958 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks.h +92 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_12_inl.h +520 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters.h +72 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_json.h +166 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_new.h +340 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_object_wrap.h +156 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_private.h +73 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_scriptorigin.h +76 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_string_bytes.h +305 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/test/examples/source-repository/a/node_modules/nan/nan_weak.h +437 -0
- package/test/examples/source-repository/a/node_modules/nan/package.json +38 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/1to2.js +412 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/README.md +14 -0
- package/test/examples/source-repository/a/node_modules/nan/tools/package.json +19 -0
- package/test/examples/source-repository/a/package-lock.json +8 -8
- package/test/examples/source-repository/a/package.json +3 -3
- package/test/examples/source-repository/b/dist/build.js +6 -5
- package/test/examples/source-repository/b/dist/build.js.map +1 -1
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.d.ts +8 -5
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js +35 -12
- package/test/examples/source-repository/b/dist/codegen/writeGeneratedIndex.js.map +1 -1
- package/test/examples/source-repository/b/dist/generated/index.js +1 -1
- package/test/examples/source-repository/b/dist/generated/index.js.map +1 -1
- package/test/examples/source-repository/b/generated/index.ts +11 -10
- package/test/examples/source-repository/b/node_modules/.package-lock.json +57 -4
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.eslintrc.js +20 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierignore +4 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/.prettierrc +8 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/CHANGELOG.md +58 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.d.ts +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js +18 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/index.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.d.ts +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js +555 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/FlattenedSourceGraph.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.d.ts +3 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/Loadable.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.d.ts +45 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js +176 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepository.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.d.ts +11 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js +9 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/SourceRepositoryFilter.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.d.ts +13 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/sourceGraphTypes.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.d.ts +221 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js +234 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/dist/src/types.js.map +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/index.ts +5 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/jest.config.js +9 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/package.json +42 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/FlattenedSourceGraph.ts +702 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/Loadable.ts +2 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepository.ts +250 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/SourceRepositoryFilter.ts +15 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/sourceGraphTypes.ts +14 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/src/types.ts +236 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/tsconfig.json +19 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/reflection/types/@dagrejs/graphlib.d.ts +1 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/CHANGELOG.md +11 -0
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.d.ts +4 -4
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js +8 -20
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/dist/src/PackageUtil.js.map +1 -1
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/package.json +2 -2
- package/test/examples/source-repository/b/node_modules/@proteinjs/util-node/src/PackageUtil.ts +4 -8
- package/test/examples/source-repository/b/node_modules/bindings/LICENSE.md +22 -0
- package/test/examples/source-repository/b/node_modules/bindings/README.md +98 -0
- package/test/examples/source-repository/b/node_modules/bindings/bindings.js +221 -0
- package/test/examples/source-repository/b/node_modules/bindings/package.json +28 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/.travis.yml +30 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/History.md +21 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/LICENSE +20 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/README.md +74 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.d.ts +2 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/index.js +66 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/package.json +32 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/test.js +24 -0
- package/test/examples/source-repository/b/node_modules/file-uri-to-path/test/tests.json +13 -0
- package/test/examples/source-repository/b/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/b/node_modules/fsevents/README.md +89 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.d.ts +46 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.js +83 -0
- package/test/examples/source-repository/b/node_modules/fsevents/fsevents.node +0 -0
- package/test/examples/source-repository/b/node_modules/fsevents/package.json +62 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/.travis.yml +103 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/ISSUE_TEMPLATE.md +8 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/LICENSE +22 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/Readme.md +78 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/binding.gyp +21 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/.target.mk +53 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Makefile +352 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
- 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
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/Release/.node +0 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/binding.Makefile +6 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/fse.target.mk +188 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/build/gyp-mac-tool +772 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.cc +88 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/fsevents.js +106 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/install.js +13 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/package.json +34 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/async.cc +43 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/constants.cc +110 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/methods.cc +44 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/storage.cc +27 -0
- package/test/examples/source-repository/b/node_modules/glob-watcher/node_modules/fsevents/src/thread.cc +71 -0
- package/test/examples/source-repository/b/node_modules/nan/CHANGELOG.md +557 -0
- package/test/examples/source-repository/b/node_modules/nan/CMakeLists.txt +138 -0
- package/test/examples/source-repository/b/node_modules/nan/LICENSE.md +9 -0
- package/test/examples/source-repository/b/node_modules/nan/README.md +456 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/asyncworker.md +146 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/buffers.md +54 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/callback.md +76 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/converters.md +41 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/errors.md +226 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/json.md +62 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/maybe_types.md +583 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/methods.md +672 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/new.md +147 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/node_misc.md +123 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/object_wrappers.md +263 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/persistent.md +296 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/scopes.md +73 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/script.md +58 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/string_bytes.md +62 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/v8_internals.md +199 -0
- package/test/examples/source-repository/b/node_modules/nan/doc/v8_misc.md +85 -0
- package/test/examples/source-repository/b/node_modules/nan/include_dirs.js +1 -0
- package/test/examples/source-repository/b/node_modules/nan/nan.h +2958 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks.h +92 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_12_inl.h +520 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_callbacks_pre_12_inl.h +520 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters.h +72 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_implementation_12_inl.h +430 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_json.h +166 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_maybe_43_inl.h +356 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_new.h +340 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_object_wrap.h +156 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_private.h +73 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_scriptorigin.h +76 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_string_bytes.h +305 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/test/examples/source-repository/b/node_modules/nan/nan_weak.h +437 -0
- package/test/examples/source-repository/b/node_modules/nan/package.json +38 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/1to2.js +412 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/README.md +14 -0
- package/test/examples/source-repository/b/node_modules/nan/tools/package.json +19 -0
- package/test/examples/source-repository/b/package-lock.json +6 -6
- package/test/examples/source-repository/b/package.json +3 -3
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/*********************************************************************
|
|
3
|
+
* NAN - Native Abstractions for Node.js
|
|
4
|
+
*
|
|
5
|
+
* Copyright (c) 2018 NAN contributors
|
|
6
|
+
*
|
|
7
|
+
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
|
|
8
|
+
********************************************************************/
|
|
9
|
+
|
|
10
|
+
var commander = require('commander'),
|
|
11
|
+
fs = require('fs'),
|
|
12
|
+
glob = require('glob'),
|
|
13
|
+
groups = [],
|
|
14
|
+
total = 0,
|
|
15
|
+
warning1 = '/* ERROR: Rewrite using Buffer */\n',
|
|
16
|
+
warning2 = '\\/\\* ERROR\\: Rewrite using Buffer \\*\\/\\n',
|
|
17
|
+
length,
|
|
18
|
+
i;
|
|
19
|
+
|
|
20
|
+
fs.readFile(__dirname + '/package.json', 'utf8', function (err, data) {
|
|
21
|
+
if (err) {
|
|
22
|
+
throw err;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
commander
|
|
26
|
+
.version(JSON.parse(data).version)
|
|
27
|
+
.usage('[options] <file ...>')
|
|
28
|
+
.parse(process.argv);
|
|
29
|
+
|
|
30
|
+
if (!process.argv.slice(2).length) {
|
|
31
|
+
commander.outputHelp();
|
|
32
|
+
}
|
|
33
|
+
});
|
|
34
|
+
|
|
35
|
+
/* construct strings representing regular expressions
|
|
36
|
+
each expression contains a unique group allowing for identification of the match
|
|
37
|
+
the index of this key group, relative to the regular expression in question,
|
|
38
|
+
is indicated by the first array member */
|
|
39
|
+
|
|
40
|
+
/* simple substistutions, key group is the entire match, 0 */
|
|
41
|
+
groups.push([0, [
|
|
42
|
+
'_NAN_',
|
|
43
|
+
'NODE_SET_METHOD',
|
|
44
|
+
'NODE_SET_PROTOTYPE_METHOD',
|
|
45
|
+
'NanAsciiString',
|
|
46
|
+
'NanEscapeScope',
|
|
47
|
+
'NanReturnValue',
|
|
48
|
+
'NanUcs2String'].join('|')]);
|
|
49
|
+
|
|
50
|
+
/* substitutions of parameterless macros, key group is 1 */
|
|
51
|
+
groups.push([1, ['(', [
|
|
52
|
+
'NanEscapableScope',
|
|
53
|
+
'NanReturnNull',
|
|
54
|
+
'NanReturnUndefined',
|
|
55
|
+
'NanScope'].join('|'), ')\\(\\)'].join('')]);
|
|
56
|
+
|
|
57
|
+
/* replace TryCatch with NanTryCatch once, gobbling possible namespace, key group 2 */
|
|
58
|
+
groups.push([2, '(?:(?:v8\\:\\:)?|(Nan)?)(TryCatch)']);
|
|
59
|
+
|
|
60
|
+
/* NanNew("string") will likely not fail a ToLocalChecked(), key group 1 */
|
|
61
|
+
groups.push([1, ['(NanNew)', '(\\("[^\\"]*"[^\\)]*\\))(?!\\.ToLocalChecked\\(\\))'].join('')]);
|
|
62
|
+
|
|
63
|
+
/* Removed v8 APIs, warn that the code needs rewriting using node::Buffer, key group 2 */
|
|
64
|
+
groups.push([2, ['(', warning2, ')?', '^.*?(', [
|
|
65
|
+
'GetIndexedPropertiesExternalArrayDataLength',
|
|
66
|
+
'GetIndexedPropertiesExternalArrayData',
|
|
67
|
+
'GetIndexedPropertiesExternalArrayDataType',
|
|
68
|
+
'GetIndexedPropertiesPixelData',
|
|
69
|
+
'GetIndexedPropertiesPixelDataLength',
|
|
70
|
+
'HasIndexedPropertiesInExternalArrayData',
|
|
71
|
+
'HasIndexedPropertiesInPixelData',
|
|
72
|
+
'SetIndexedPropertiesToExternalArrayData',
|
|
73
|
+
'SetIndexedPropertiesToPixelData'].join('|'), ')'].join('')]);
|
|
74
|
+
|
|
75
|
+
/* No need for NanScope in V8-exposed methods, key group 2 */
|
|
76
|
+
groups.push([2, ['((', [
|
|
77
|
+
'NAN_METHOD',
|
|
78
|
+
'NAN_GETTER',
|
|
79
|
+
'NAN_SETTER',
|
|
80
|
+
'NAN_PROPERTY_GETTER',
|
|
81
|
+
'NAN_PROPERTY_SETTER',
|
|
82
|
+
'NAN_PROPERTY_ENUMERATOR',
|
|
83
|
+
'NAN_PROPERTY_DELETER',
|
|
84
|
+
'NAN_PROPERTY_QUERY',
|
|
85
|
+
'NAN_INDEX_GETTER',
|
|
86
|
+
'NAN_INDEX_SETTER',
|
|
87
|
+
'NAN_INDEX_ENUMERATOR',
|
|
88
|
+
'NAN_INDEX_DELETER',
|
|
89
|
+
'NAN_INDEX_QUERY'].join('|'), ')\\([^\\)]*\\)\\s*\\{)\\s*NanScope\\(\\)\\s*;'].join('')]);
|
|
90
|
+
|
|
91
|
+
/* v8::Value::ToXXXXXXX returns v8::MaybeLocal<T>, key group 3 */
|
|
92
|
+
groups.push([3, ['([\\s\\(\\)])([^\\s\\(\\)]+)->(', [
|
|
93
|
+
'Boolean',
|
|
94
|
+
'Number',
|
|
95
|
+
'String',
|
|
96
|
+
'Object',
|
|
97
|
+
'Integer',
|
|
98
|
+
'Uint32',
|
|
99
|
+
'Int32'].join('|'), ')\\('].join('')]);
|
|
100
|
+
|
|
101
|
+
/* v8::Value::XXXXXXXValue returns v8::Maybe<T>, key group 3 */
|
|
102
|
+
groups.push([3, ['([\\s\\(\\)])([^\\s\\(\\)]+)->((?:', [
|
|
103
|
+
'Boolean',
|
|
104
|
+
'Number',
|
|
105
|
+
'Integer',
|
|
106
|
+
'Uint32',
|
|
107
|
+
'Int32'].join('|'), ')Value)\\('].join('')]);
|
|
108
|
+
|
|
109
|
+
/* NAN_WEAK_CALLBACK macro was removed, write out callback definition, key group 1 */
|
|
110
|
+
groups.push([1, '(NAN_WEAK_CALLBACK)\\(([^\\s\\)]+)\\)']);
|
|
111
|
+
|
|
112
|
+
/* node::ObjectWrap and v8::Persistent have been replaced with Nan implementations, key group 1 */
|
|
113
|
+
groups.push([1, ['(', [
|
|
114
|
+
'NanDisposePersistent',
|
|
115
|
+
'NanObjectWrapHandle'].join('|'), ')\\s*\\(\\s*([^\\s\\)]+)'].join('')]);
|
|
116
|
+
|
|
117
|
+
/* Since NanPersistent there is no need for NanMakeWeakPersistent, key group 1 */
|
|
118
|
+
groups.push([1, '(NanMakeWeakPersistent)\\s*\\(\\s*([^\\s,]+)\\s*,\\s*']);
|
|
119
|
+
|
|
120
|
+
/* Many methods of v8::Object and others now return v8::MaybeLocal<T>, key group 3 */
|
|
121
|
+
groups.push([3, ['([\\s])([^\\s]+)->(', [
|
|
122
|
+
'GetEndColumn',
|
|
123
|
+
'GetFunction',
|
|
124
|
+
'GetLineNumber',
|
|
125
|
+
'NewInstance',
|
|
126
|
+
'GetPropertyNames',
|
|
127
|
+
'GetOwnPropertyNames',
|
|
128
|
+
'GetSourceLine',
|
|
129
|
+
'GetStartColumn',
|
|
130
|
+
'ObjectProtoToString',
|
|
131
|
+
'ToArrayIndex',
|
|
132
|
+
'ToDetailString',
|
|
133
|
+
'CallAsConstructor',
|
|
134
|
+
'CallAsFunction',
|
|
135
|
+
'CloneElementAt',
|
|
136
|
+
'Delete',
|
|
137
|
+
'ForceSet',
|
|
138
|
+
'Get',
|
|
139
|
+
'GetPropertyAttributes',
|
|
140
|
+
'GetRealNamedProperty',
|
|
141
|
+
'GetRealNamedPropertyInPrototypeChain',
|
|
142
|
+
'Has',
|
|
143
|
+
'HasOwnProperty',
|
|
144
|
+
'HasRealIndexedProperty',
|
|
145
|
+
'HasRealNamedCallbackProperty',
|
|
146
|
+
'HasRealNamedProperty',
|
|
147
|
+
'Set',
|
|
148
|
+
'SetAccessor',
|
|
149
|
+
'SetIndexedPropertyHandler',
|
|
150
|
+
'SetNamedPropertyHandler',
|
|
151
|
+
'SetPrototype'].join('|'), ')\\('].join('')]);
|
|
152
|
+
|
|
153
|
+
/* You should get an error if any of these fail anyways,
|
|
154
|
+
or handle the error better, it is indicated either way, key group 2 */
|
|
155
|
+
groups.push([2, ['NanNew(<(?:v8\\:\\:)?(', ['Date', 'String', 'RegExp'].join('|'), ')>)(\\([^\\)]*\\))(?!\\.ToLocalChecked\\(\\))'].join('')]);
|
|
156
|
+
|
|
157
|
+
/* v8::Value::Equals now returns a v8::Maybe, key group 3 */
|
|
158
|
+
groups.push([3, '([\\s\\(\\)])([^\\s\\(\\)]+)->(Equals)\\(([^\\s\\)]+)']);
|
|
159
|
+
|
|
160
|
+
/* NanPersistent makes this unnecessary, key group 1 */
|
|
161
|
+
groups.push([1, '(NanAssignPersistent)(?:<v8\\:\\:[^>]+>)?\\(([^,]+),\\s*']);
|
|
162
|
+
|
|
163
|
+
/* args has been renamed to info, key group 2 */
|
|
164
|
+
groups.push([2, '(\\W)(args)(\\W)'])
|
|
165
|
+
|
|
166
|
+
/* node::ObjectWrap was replaced with NanObjectWrap, key group 2 */
|
|
167
|
+
groups.push([2, '(\\W)(?:node\\:\\:)?(ObjectWrap)(\\W)']);
|
|
168
|
+
|
|
169
|
+
/* v8::Persistent was replaced with NanPersistent, key group 2 */
|
|
170
|
+
groups.push([2, '(\\W)(?:v8\\:\\:)?(Persistent)(\\W)']);
|
|
171
|
+
|
|
172
|
+
/* counts the number of capturing groups in a well-formed regular expression,
|
|
173
|
+
ignoring non-capturing groups and escaped parentheses */
|
|
174
|
+
function groupcount(s) {
|
|
175
|
+
var positive = s.match(/\((?!\?)/g),
|
|
176
|
+
negative = s.match(/\\\(/g);
|
|
177
|
+
return (positive ? positive.length : 0) - (negative ? negative.length : 0);
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
/* compute the absolute position of each key group in the joined master RegExp */
|
|
181
|
+
for (i = 1, length = groups.length; i < length; i++) {
|
|
182
|
+
total += groupcount(groups[i - 1][1]);
|
|
183
|
+
groups[i][0] += total;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/* create the master RegExp, which is the union of all the groups' expressions */
|
|
187
|
+
master = new RegExp(groups.map(function (a) { return a[1]; }).join('|'), 'gm');
|
|
188
|
+
|
|
189
|
+
/* replacement function for String.replace, receives 21 arguments */
|
|
190
|
+
function replace() {
|
|
191
|
+
/* simple expressions */
|
|
192
|
+
switch (arguments[groups[0][0]]) {
|
|
193
|
+
case '_NAN_':
|
|
194
|
+
return 'NAN_';
|
|
195
|
+
case 'NODE_SET_METHOD':
|
|
196
|
+
return 'NanSetMethod';
|
|
197
|
+
case 'NODE_SET_PROTOTYPE_METHOD':
|
|
198
|
+
return 'NanSetPrototypeMethod';
|
|
199
|
+
case 'NanAsciiString':
|
|
200
|
+
return 'NanUtf8String';
|
|
201
|
+
case 'NanEscapeScope':
|
|
202
|
+
return 'scope.Escape';
|
|
203
|
+
case 'NanReturnNull':
|
|
204
|
+
return 'info.GetReturnValue().SetNull';
|
|
205
|
+
case 'NanReturnValue':
|
|
206
|
+
return 'info.GetReturnValue().Set';
|
|
207
|
+
case 'NanUcs2String':
|
|
208
|
+
return 'v8::String::Value';
|
|
209
|
+
default:
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
/* macros without arguments */
|
|
213
|
+
switch (arguments[groups[1][0]]) {
|
|
214
|
+
case 'NanEscapableScope':
|
|
215
|
+
return 'NanEscapableScope scope'
|
|
216
|
+
case 'NanReturnUndefined':
|
|
217
|
+
return 'return';
|
|
218
|
+
case 'NanScope':
|
|
219
|
+
return 'NanScope scope';
|
|
220
|
+
default:
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* TryCatch, emulate negative backref */
|
|
224
|
+
if (arguments[groups[2][0]] === 'TryCatch') {
|
|
225
|
+
return arguments[groups[2][0] - 1] ? arguments[0] : 'NanTryCatch';
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
/* NanNew("foo") --> NanNew("foo").ToLocalChecked() */
|
|
229
|
+
if (arguments[groups[3][0]] === 'NanNew') {
|
|
230
|
+
return [arguments[0], '.ToLocalChecked()'].join('');
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
/* insert warning for removed functions as comment on new line above */
|
|
234
|
+
switch (arguments[groups[4][0]]) {
|
|
235
|
+
case 'GetIndexedPropertiesExternalArrayData':
|
|
236
|
+
case 'GetIndexedPropertiesExternalArrayDataLength':
|
|
237
|
+
case 'GetIndexedPropertiesExternalArrayDataType':
|
|
238
|
+
case 'GetIndexedPropertiesPixelData':
|
|
239
|
+
case 'GetIndexedPropertiesPixelDataLength':
|
|
240
|
+
case 'HasIndexedPropertiesInExternalArrayData':
|
|
241
|
+
case 'HasIndexedPropertiesInPixelData':
|
|
242
|
+
case 'SetIndexedPropertiesToExternalArrayData':
|
|
243
|
+
case 'SetIndexedPropertiesToPixelData':
|
|
244
|
+
return arguments[groups[4][0] - 1] ? arguments[0] : [warning1, arguments[0]].join('');
|
|
245
|
+
default:
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/* remove unnecessary NanScope() */
|
|
249
|
+
switch (arguments[groups[5][0]]) {
|
|
250
|
+
case 'NAN_GETTER':
|
|
251
|
+
case 'NAN_METHOD':
|
|
252
|
+
case 'NAN_SETTER':
|
|
253
|
+
case 'NAN_INDEX_DELETER':
|
|
254
|
+
case 'NAN_INDEX_ENUMERATOR':
|
|
255
|
+
case 'NAN_INDEX_GETTER':
|
|
256
|
+
case 'NAN_INDEX_QUERY':
|
|
257
|
+
case 'NAN_INDEX_SETTER':
|
|
258
|
+
case 'NAN_PROPERTY_DELETER':
|
|
259
|
+
case 'NAN_PROPERTY_ENUMERATOR':
|
|
260
|
+
case 'NAN_PROPERTY_GETTER':
|
|
261
|
+
case 'NAN_PROPERTY_QUERY':
|
|
262
|
+
case 'NAN_PROPERTY_SETTER':
|
|
263
|
+
return arguments[groups[5][0] - 1];
|
|
264
|
+
default:
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
/* Value conversion */
|
|
268
|
+
switch (arguments[groups[6][0]]) {
|
|
269
|
+
case 'Boolean':
|
|
270
|
+
case 'Int32':
|
|
271
|
+
case 'Integer':
|
|
272
|
+
case 'Number':
|
|
273
|
+
case 'Object':
|
|
274
|
+
case 'String':
|
|
275
|
+
case 'Uint32':
|
|
276
|
+
return [arguments[groups[6][0] - 2], 'NanTo<v8::', arguments[groups[6][0]], '>(', arguments[groups[6][0] - 1]].join('');
|
|
277
|
+
default:
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
/* other value conversion */
|
|
281
|
+
switch (arguments[groups[7][0]]) {
|
|
282
|
+
case 'BooleanValue':
|
|
283
|
+
return [arguments[groups[7][0] - 2], 'NanTo<bool>(', arguments[groups[7][0] - 1]].join('');
|
|
284
|
+
case 'Int32Value':
|
|
285
|
+
return [arguments[groups[7][0] - 2], 'NanTo<int32_t>(', arguments[groups[7][0] - 1]].join('');
|
|
286
|
+
case 'IntegerValue':
|
|
287
|
+
return [arguments[groups[7][0] - 2], 'NanTo<int64_t>(', arguments[groups[7][0] - 1]].join('');
|
|
288
|
+
case 'Uint32Value':
|
|
289
|
+
return [arguments[groups[7][0] - 2], 'NanTo<uint32_t>(', arguments[groups[7][0] - 1]].join('');
|
|
290
|
+
default:
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/* NAN_WEAK_CALLBACK */
|
|
294
|
+
if (arguments[groups[8][0]] === 'NAN_WEAK_CALLBACK') {
|
|
295
|
+
return ['template<typename T>\nvoid ',
|
|
296
|
+
arguments[groups[8][0] + 1], '(const NanWeakCallbackInfo<T> &data)'].join('');
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
/* use methods on NAN classes instead */
|
|
300
|
+
switch (arguments[groups[9][0]]) {
|
|
301
|
+
case 'NanDisposePersistent':
|
|
302
|
+
return [arguments[groups[9][0] + 1], '.Reset('].join('');
|
|
303
|
+
case 'NanObjectWrapHandle':
|
|
304
|
+
return [arguments[groups[9][0] + 1], '->handle('].join('');
|
|
305
|
+
default:
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
/* use method on NanPersistent instead */
|
|
309
|
+
if (arguments[groups[10][0]] === 'NanMakeWeakPersistent') {
|
|
310
|
+
return arguments[groups[10][0] + 1] + '.SetWeak(';
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/* These return Maybes, the upper ones take no arguments */
|
|
314
|
+
switch (arguments[groups[11][0]]) {
|
|
315
|
+
case 'GetEndColumn':
|
|
316
|
+
case 'GetFunction':
|
|
317
|
+
case 'GetLineNumber':
|
|
318
|
+
case 'GetOwnPropertyNames':
|
|
319
|
+
case 'GetPropertyNames':
|
|
320
|
+
case 'GetSourceLine':
|
|
321
|
+
case 'GetStartColumn':
|
|
322
|
+
case 'NewInstance':
|
|
323
|
+
case 'ObjectProtoToString':
|
|
324
|
+
case 'ToArrayIndex':
|
|
325
|
+
case 'ToDetailString':
|
|
326
|
+
return [arguments[groups[11][0] - 2], 'Nan', arguments[groups[11][0]], '(', arguments[groups[11][0] - 1]].join('');
|
|
327
|
+
case 'CallAsConstructor':
|
|
328
|
+
case 'CallAsFunction':
|
|
329
|
+
case 'CloneElementAt':
|
|
330
|
+
case 'Delete':
|
|
331
|
+
case 'ForceSet':
|
|
332
|
+
case 'Get':
|
|
333
|
+
case 'GetPropertyAttributes':
|
|
334
|
+
case 'GetRealNamedProperty':
|
|
335
|
+
case 'GetRealNamedPropertyInPrototypeChain':
|
|
336
|
+
case 'Has':
|
|
337
|
+
case 'HasOwnProperty':
|
|
338
|
+
case 'HasRealIndexedProperty':
|
|
339
|
+
case 'HasRealNamedCallbackProperty':
|
|
340
|
+
case 'HasRealNamedProperty':
|
|
341
|
+
case 'Set':
|
|
342
|
+
case 'SetAccessor':
|
|
343
|
+
case 'SetIndexedPropertyHandler':
|
|
344
|
+
case 'SetNamedPropertyHandler':
|
|
345
|
+
case 'SetPrototype':
|
|
346
|
+
return [arguments[groups[11][0] - 2], 'Nan', arguments[groups[11][0]], '(', arguments[groups[11][0] - 1], ', '].join('');
|
|
347
|
+
default:
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
/* Automatic ToLocalChecked(), take it or leave it */
|
|
351
|
+
switch (arguments[groups[12][0]]) {
|
|
352
|
+
case 'Date':
|
|
353
|
+
case 'String':
|
|
354
|
+
case 'RegExp':
|
|
355
|
+
return ['NanNew', arguments[groups[12][0] - 1], arguments[groups[12][0] + 1], '.ToLocalChecked()'].join('');
|
|
356
|
+
default:
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/* NanEquals is now required for uniformity */
|
|
360
|
+
if (arguments[groups[13][0]] === 'Equals') {
|
|
361
|
+
return [arguments[groups[13][0] - 1], 'NanEquals(', arguments[groups[13][0] - 1], ', ', arguments[groups[13][0] + 1]].join('');
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
/* use method on replacement class instead */
|
|
365
|
+
if (arguments[groups[14][0]] === 'NanAssignPersistent') {
|
|
366
|
+
return [arguments[groups[14][0] + 1], '.Reset('].join('');
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/* args --> info */
|
|
370
|
+
if (arguments[groups[15][0]] === 'args') {
|
|
371
|
+
return [arguments[groups[15][0] - 1], 'info', arguments[groups[15][0] + 1]].join('');
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/* ObjectWrap --> NanObjectWrap */
|
|
375
|
+
if (arguments[groups[16][0]] === 'ObjectWrap') {
|
|
376
|
+
return [arguments[groups[16][0] - 1], 'NanObjectWrap', arguments[groups[16][0] + 1]].join('');
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
/* Persistent --> NanPersistent */
|
|
380
|
+
if (arguments[groups[17][0]] === 'Persistent') {
|
|
381
|
+
return [arguments[groups[17][0] - 1], 'NanPersistent', arguments[groups[17][0] + 1]].join('');
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
/* This should not happen. A switch is probably missing a case if it does. */
|
|
385
|
+
throw 'Unhandled match: ' + arguments[0];
|
|
386
|
+
}
|
|
387
|
+
|
|
388
|
+
/* reads a file, runs replacement and writes it back */
|
|
389
|
+
function processFile(file) {
|
|
390
|
+
fs.readFile(file, {encoding: 'utf8'}, function (err, data) {
|
|
391
|
+
if (err) {
|
|
392
|
+
throw err;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/* run replacement twice, might need more runs */
|
|
396
|
+
fs.writeFile(file, data.replace(master, replace).replace(master, replace), function (err) {
|
|
397
|
+
if (err) {
|
|
398
|
+
throw err;
|
|
399
|
+
}
|
|
400
|
+
});
|
|
401
|
+
});
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
/* process file names from command line and process the identified files */
|
|
405
|
+
for (i = 2, length = process.argv.length; i < length; i++) {
|
|
406
|
+
glob(process.argv[i], function (err, matches) {
|
|
407
|
+
if (err) {
|
|
408
|
+
throw err;
|
|
409
|
+
}
|
|
410
|
+
matches.forEach(processFile);
|
|
411
|
+
});
|
|
412
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
1to2 naively converts source code files from NAN 1 to NAN 2. There will be erroneous conversions,
|
|
2
|
+
false positives and missed opportunities. The input files are rewritten in place. Make sure that
|
|
3
|
+
you have backups. You will have to manually review the changes afterwards and do some touchups.
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
$ tools/1to2.js
|
|
7
|
+
|
|
8
|
+
Usage: 1to2 [options] <file ...>
|
|
9
|
+
|
|
10
|
+
Options:
|
|
11
|
+
|
|
12
|
+
-h, --help output usage information
|
|
13
|
+
-V, --version output the version number
|
|
14
|
+
```
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "1to2",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "NAN 1 -> 2 Migration Script",
|
|
5
|
+
"main": "1to2.js",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git://github.com/nodejs/nan.git"
|
|
9
|
+
},
|
|
10
|
+
"contributors": [
|
|
11
|
+
"Benjamin Byholm <bbyholm@abo.fi> (https://github.com/kkoopa/)",
|
|
12
|
+
"Mathias Küsel (https://github.com/mathiask88/)"
|
|
13
|
+
],
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"glob": "~5.0.10",
|
|
16
|
+
"commander": "~2.8.1"
|
|
17
|
+
},
|
|
18
|
+
"license": "MIT"
|
|
19
|
+
}
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/reflection-build-test-a",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@proteinjs/reflection-build-test-a",
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.16",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@dagrejs/graphlib": "2.1.4",
|
|
13
13
|
"@proteinjs/reflection": "^1.1.10",
|
|
14
14
|
"@proteinjs/reflection-build-test-b": "file:../b",
|
|
15
15
|
"@proteinjs/util": "1.5.0",
|
|
16
|
-
"@proteinjs/util-node": "1.
|
|
16
|
+
"@proteinjs/util-node": "1.6.0",
|
|
17
17
|
"globby": "11.0.1",
|
|
18
18
|
"gulp": "4.0.2",
|
|
19
19
|
"gulp-shell": "0.8.0",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
},
|
|
33
33
|
"../b": {
|
|
34
34
|
"name": "@proteinjs/reflection-build-test-b",
|
|
35
|
-
"version": "0.0.
|
|
35
|
+
"version": "0.0.16",
|
|
36
36
|
"license": "ISC",
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@dagrejs/graphlib": "2.1.4",
|
|
39
39
|
"@proteinjs/reflection": "^1.1.10",
|
|
40
40
|
"@proteinjs/util": "1.5.0",
|
|
41
|
-
"@proteinjs/util-node": "1.
|
|
41
|
+
"@proteinjs/util-node": "1.6.0",
|
|
42
42
|
"globby": "11.0.1",
|
|
43
43
|
"gulp": "4.0.2",
|
|
44
44
|
"gulp-shell": "0.8.0",
|
|
@@ -1128,9 +1128,9 @@
|
|
|
1128
1128
|
}
|
|
1129
1129
|
},
|
|
1130
1130
|
"node_modules/@proteinjs/util-node": {
|
|
1131
|
-
"version": "1.
|
|
1132
|
-
"resolved": "https://registry.npmjs.org/@proteinjs/util-node/-/util-node-1.
|
|
1133
|
-
"integrity": "sha512-
|
|
1131
|
+
"version": "1.6.0",
|
|
1132
|
+
"resolved": "https://registry.npmjs.org/@proteinjs/util-node/-/util-node-1.6.0.tgz",
|
|
1133
|
+
"integrity": "sha512-gSv/+q9LX+7hCV+SBz8P8j2sNrJo48fv2/ldFuE0RwSYy6tb6IhKV7JpUvVtvJwxUG7ggE9sKDrvgZxmVrxPVQ==",
|
|
1134
1134
|
"license": "ISC",
|
|
1135
1135
|
"dependencies": {
|
|
1136
1136
|
"@dagrejs/graphlib": "2.1.4",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proteinjs/reflection-build-test-a",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.16",
|
|
4
4
|
"private": true,
|
|
5
5
|
"description": "Test package a",
|
|
6
6
|
"repository": {
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@proteinjs/reflection": "^1.1.10",
|
|
23
23
|
"@proteinjs/reflection-build-test-b": "file:../b",
|
|
24
24
|
"@proteinjs/util": "1.5.0",
|
|
25
|
-
"@proteinjs/util-node": "1.
|
|
25
|
+
"@proteinjs/util-node": "1.6.0",
|
|
26
26
|
"globby": "11.0.1",
|
|
27
27
|
"gulp": "4.0.2",
|
|
28
28
|
"gulp-shell": "0.8.0",
|
|
@@ -40,4 +40,4 @@
|
|
|
40
40
|
},
|
|
41
41
|
"main": "./dist/generated/index.js",
|
|
42
42
|
"types": "./dist/generated/index.d.ts"
|
|
43
|
-
}
|
|
43
|
+
}
|
|
@@ -84,9 +84,9 @@ function build() {
|
|
|
84
84
|
isProd = primaryRoot === 'src';
|
|
85
85
|
if (isProd) {
|
|
86
86
|
targetDirDist = path.join(targetDir, distDirRel);
|
|
87
|
-
relGenPath = primaryRoot
|
|
88
|
-
? path.relative(targetDir, path.join(targetDir, 'generated'))
|
|
89
|
-
: path.relative(targetDir, path.join(targetDir, 'generated'
|
|
87
|
+
relGenPath = primaryRoot && primaryRoot !== 'src'
|
|
88
|
+
? path.relative(targetDir, path.join(targetDir, 'generated', primaryRoot))
|
|
89
|
+
: path.relative(targetDir, path.join(targetDir, 'generated'));
|
|
90
90
|
targetDirDistGenerated = path.join(targetDirDist, relGenPath);
|
|
91
91
|
generatedIndexJs = path.join(targetDirDistGenerated, 'index.js');
|
|
92
92
|
generatedIndexDts = path.join(targetDirDistGenerated, 'index.d.ts');
|
|
@@ -133,7 +133,7 @@ function build() {
|
|
|
133
133
|
});
|
|
134
134
|
});
|
|
135
135
|
}
|
|
136
|
-
var targetDir, targetDirTsconfig, sourceRootsRaw, sourceRoots, primaryRoot, distDirRel, targetDirGenerated, generatedIndex;
|
|
136
|
+
var targetDir, targetDirTsconfig, sourceRootsRaw, sourceRoots, primaryRoot, publicEntryRelOverride, distDirRel, targetDirGenerated, generatedIndex;
|
|
137
137
|
return __generator(this, function (_a) {
|
|
138
138
|
switch (_a.label) {
|
|
139
139
|
case 0:
|
|
@@ -145,6 +145,7 @@ function build() {
|
|
|
145
145
|
.filter(Boolean);
|
|
146
146
|
sourceRoots = sourceRootsRaw.length > 0 ? sourceRootsRaw : ['src'];
|
|
147
147
|
primaryRoot = sourceRoots[0];
|
|
148
|
+
publicEntryRelOverride = process.env.REFLECTION_EXPORT_FROM;
|
|
148
149
|
distDirRel = process.env.REFLECTION_DIST_DIR || 'dist';
|
|
149
150
|
targetDirGenerated = primaryRoot && primaryRoot !== 'src'
|
|
150
151
|
? path.join(targetDir, 'generated', primaryRoot)
|
|
@@ -156,7 +157,7 @@ function build() {
|
|
|
156
157
|
return [4 /*yield*/, writeTsconfig()];
|
|
157
158
|
case 2:
|
|
158
159
|
_a.sent();
|
|
159
|
-
return [4 /*yield*/, (0, writeGeneratedIndex_1.writeGeneratedIndex)(targetDir, targetDirGenerated, generatedIndex, sourceRoots)];
|
|
160
|
+
return [4 /*yield*/, (0, writeGeneratedIndex_1.writeGeneratedIndex)(targetDir, targetDirGenerated, generatedIndex, sourceRoots, publicEntryRelOverride)];
|
|
160
161
|
case 3:
|
|
161
162
|
_a.sent();
|
|
162
163
|
return [2 /*return*/];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.js","sourceRoot":"","sources":["../../../../../src/build.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA6B;AAC7B,IAAM,QAAQ,GAAG,OAAO,CAAC,yBAAyB,CAAC,CAAC;AACpD,kDAAqD;AACrD,qEAAoE;AAEpE,SAAsB,KAAK;;
|
|
1
|
+
{"version":3,"file":"build.js","sourceRoot":"","sources":["../../../../../src/build.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @param packageDir
|
|
3
|
-
* @param packageGeneratedDir
|
|
4
|
-
* @param generatedIndexPath
|
|
5
|
-
* @param
|
|
2
|
+
* @param packageDir Root of the package (contains package.json)
|
|
3
|
+
* @param packageGeneratedDir Directory where generated/index.ts will be written
|
|
4
|
+
* @param generatedIndexPath Full path to generated/index.ts
|
|
5
|
+
* @param sourceRootsRel Relative directories to scan (e.g. ['test','src']) — defaults to 'src'
|
|
6
|
+
* @param publicEntryRelOverride Optional relative path (from package root) to the public entry that the
|
|
7
|
+
* generated index should re-export from (e.g. 'test/index.ts').
|
|
8
|
+
* If omitted, we re-export from '<packageRoot>/index'.
|
|
6
9
|
*/
|
|
7
|
-
export declare function writeGeneratedIndex(packageDir: string, packageGeneratedDir: string, generatedIndexPath: string, sourceRootsRel?: string | string[]): Promise<void>;
|
|
10
|
+
export declare function writeGeneratedIndex(packageDir: string, packageGeneratedDir: string, generatedIndexPath: string, sourceRootsRel?: string | string[], publicEntryRelOverride?: string): Promise<void>;
|