porffor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CNAME +1 -0
- package/LICENSE +21 -0
- package/README.md +275 -0
- package/compiler/builtins/base64.js +92 -0
- package/compiler/builtins.js +770 -0
- package/compiler/codeGen.js +2027 -0
- package/compiler/decompile.js +102 -0
- package/compiler/embedding.js +19 -0
- package/compiler/encoding.js +217 -0
- package/compiler/expression.js +70 -0
- package/compiler/index.js +67 -0
- package/compiler/opt.js +436 -0
- package/compiler/parse.js +8 -0
- package/compiler/prototype.js +272 -0
- package/compiler/sections.js +154 -0
- package/compiler/wasmSpec.js +200 -0
- package/compiler/wrap.js +119 -0
- package/index.html +1264 -0
- package/logo.png +0 -0
- package/package.json +23 -0
- package/porf.cmd +2 -0
- package/runner/compare.js +35 -0
- package/runner/index.js +32 -0
- package/runner/info.js +54 -0
- package/runner/profile.js +47 -0
- package/runner/repl.js +99 -0
- package/runner/sizes.js +38 -0
- package/runner/transform.js +36 -0
- package/sw.js +26 -0
- package/test/array_1.js +8 -0
- package/test/array_push.js +8 -0
- package/test/assignop_1.js +15 -0
- package/test/bitwise_1.js +6 -0
- package/test/bool_1.js +3 -0
- package/test/boolean.js +6 -0
- package/test/break_1.js +6 -0
- package/test/break_2.js +12 -0
- package/test/conditional_1.js +3 -0
- package/test/conditional_2.js +4 -0
- package/test/console_1.js +2 -0
- package/test/continue_1.js +6 -0
- package/test/continue_2.js +10 -0
- package/test/empty.js +1 -0
- package/test/ending_exp_1.js +2 -0
- package/test/ending_exp_2.js +6 -0
- package/test/eq_1.js +4 -0
- package/test/eq_2.js +4 -0
- package/test/eq_3.js +5 -0
- package/test/export_1.js +9 -0
- package/test/factorial.js +3 -0
- package/test/fibonacci.js +16 -0
- package/test/float_div0.js +2 -0
- package/test/float_frac.js +2 -0
- package/test/float_isfinite.js +29 -0
- package/test/float_isinteger.js +13 -0
- package/test/float_isnan.js +20 -0
- package/test/float_issafeinteger.js +11 -0
- package/test/float_large.js +2 -0
- package/test/float_math_funcs.js +24 -0
- package/test/float_math_random.js +6 -0
- package/test/float_nan.js +3 -0
- package/test/float_number_values.js +12 -0
- package/test/for_1.js +4 -0
- package/test/for_2.js +4 -0
- package/test/func_1.js +16 -0
- package/test/func_2.js +6 -0
- package/test/func_3.js +10 -0
- package/test/global_1.js +8 -0
- package/test/global_2.js +10 -0
- package/test/if_1.js +6 -0
- package/test/if_2.js +9 -0
- package/test/if_3.js +7 -0
- package/test/iife_1.js +8 -0
- package/test/iife_2.js +8 -0
- package/test/index.js +93 -0
- package/test/int_number_values.js +6 -0
- package/test/logic_1.js +7 -0
- package/test/logic_2.js +7 -0
- package/test/math_1.js +6 -0
- package/test/math_2.js +12 -0
- package/test/math_3.js +6 -0
- package/test/number_func.js +4 -0
- package/test/return_1.js +8 -0
- package/test/return_2.js +11 -0
- package/test/tailcall_1.js +10 -0
- package/test/throw_1.js +2 -0
- package/test/throw_2.js +4 -0
- package/test/throw_3.js +2 -0
- package/test/throw_4.js +3 -0
- package/test/try_1.js +7 -0
- package/test/unary_1.js +4 -0
- package/test/unary_2.js +5 -0
- package/test/unary_3.js +6 -0
- package/test/unary_4.js +12 -0
- package/test/unary_5.js +8 -0
- package/test/undefined_1.js +8 -0
- package/test/undefined_2.js +10 -0
- package/test/updateexp_1.js +9 -0
- package/test/vars_1.js +5 -0
- package/test/vars_2.js +9 -0
- package/test/while_1.js +6 -0
- package/test262/compare.js +30 -0
- package/test262/index.js +314 -0
- package/test262/node_modules/.bin/esparse +12 -0
- package/test262/node_modules/.bin/esparse.cmd +17 -0
- package/test262/node_modules/.bin/esparse.ps1 +28 -0
- package/test262/node_modules/.bin/esvalidate +12 -0
- package/test262/node_modules/.bin/esvalidate.cmd +17 -0
- package/test262/node_modules/.bin/esvalidate.ps1 +28 -0
- package/test262/node_modules/.bin/js-yaml +12 -0
- package/test262/node_modules/.bin/js-yaml.cmd +17 -0
- package/test262/node_modules/.bin/js-yaml.ps1 +28 -0
- package/test262/node_modules/.package-lock.json +0 -0
- package/test262/node_modules/@nodelib/fs.scandir/LICENSE +21 -0
- package/test262/node_modules/@nodelib/fs.scandir/README.md +171 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/adapters/fs.d.ts +20 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/adapters/fs.js +19 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/constants.d.ts +4 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/constants.js +17 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/index.d.ts +12 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/index.js +26 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/async.d.ts +7 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/async.js +104 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/common.d.ts +1 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/common.js +13 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/sync.d.ts +5 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/providers/sync.js +54 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/settings.d.ts +20 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/settings.js +24 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/types/index.d.ts +20 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/types/index.js +2 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/utils/fs.d.ts +2 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/utils/fs.js +19 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/utils/index.d.ts +2 -0
- package/test262/node_modules/@nodelib/fs.scandir/out/utils/index.js +5 -0
- package/test262/node_modules/@nodelib/fs.scandir/package.json +44 -0
- package/test262/node_modules/@nodelib/fs.stat/LICENSE +21 -0
- package/test262/node_modules/@nodelib/fs.stat/README.md +126 -0
- package/test262/node_modules/@nodelib/fs.stat/out/adapters/fs.d.ts +13 -0
- package/test262/node_modules/@nodelib/fs.stat/out/adapters/fs.js +17 -0
- package/test262/node_modules/@nodelib/fs.stat/out/index.d.ts +12 -0
- package/test262/node_modules/@nodelib/fs.stat/out/index.js +26 -0
- package/test262/node_modules/@nodelib/fs.stat/out/providers/async.d.ts +4 -0
- package/test262/node_modules/@nodelib/fs.stat/out/providers/async.js +36 -0
- package/test262/node_modules/@nodelib/fs.stat/out/providers/sync.d.ts +3 -0
- package/test262/node_modules/@nodelib/fs.stat/out/providers/sync.js +23 -0
- package/test262/node_modules/@nodelib/fs.stat/out/settings.d.ts +16 -0
- package/test262/node_modules/@nodelib/fs.stat/out/settings.js +16 -0
- package/test262/node_modules/@nodelib/fs.stat/out/types/index.d.ts +4 -0
- package/test262/node_modules/@nodelib/fs.stat/out/types/index.js +2 -0
- package/test262/node_modules/@nodelib/fs.stat/package.json +37 -0
- package/test262/node_modules/@nodelib/fs.walk/LICENSE +21 -0
- package/test262/node_modules/@nodelib/fs.walk/README.md +215 -0
- package/test262/node_modules/@nodelib/fs.walk/out/index.d.ts +14 -0
- package/test262/node_modules/@nodelib/fs.walk/out/index.js +34 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/async.d.ts +12 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/async.js +30 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/index.d.ts +4 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/index.js +9 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/stream.d.ts +12 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/stream.js +34 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts +10 -0
- package/test262/node_modules/@nodelib/fs.walk/out/providers/sync.js +14 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/async.d.ts +30 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/async.js +97 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/common.d.ts +7 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/common.js +31 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/reader.d.ts +6 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/reader.js +11 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/sync.d.ts +15 -0
- package/test262/node_modules/@nodelib/fs.walk/out/readers/sync.js +59 -0
- package/test262/node_modules/@nodelib/fs.walk/out/settings.d.ts +30 -0
- package/test262/node_modules/@nodelib/fs.walk/out/settings.js +26 -0
- package/test262/node_modules/@nodelib/fs.walk/out/types/index.d.ts +8 -0
- package/test262/node_modules/@nodelib/fs.walk/out/types/index.js +2 -0
- package/test262/node_modules/@nodelib/fs.walk/package.json +44 -0
- package/test262/node_modules/argparse/CHANGELOG.md +185 -0
- package/test262/node_modules/argparse/LICENSE +21 -0
- package/test262/node_modules/argparse/README.md +257 -0
- package/test262/node_modules/argparse/index.js +3 -0
- package/test262/node_modules/argparse/lib/action/append/constant.js +47 -0
- package/test262/node_modules/argparse/lib/action/append.js +53 -0
- package/test262/node_modules/argparse/lib/action/count.js +40 -0
- package/test262/node_modules/argparse/lib/action/help.js +47 -0
- package/test262/node_modules/argparse/lib/action/store/constant.js +43 -0
- package/test262/node_modules/argparse/lib/action/store/false.js +27 -0
- package/test262/node_modules/argparse/lib/action/store/true.js +26 -0
- package/test262/node_modules/argparse/lib/action/store.js +50 -0
- package/test262/node_modules/argparse/lib/action/subparsers.js +149 -0
- package/test262/node_modules/argparse/lib/action/version.js +47 -0
- package/test262/node_modules/argparse/lib/action.js +146 -0
- package/test262/node_modules/argparse/lib/action_container.js +482 -0
- package/test262/node_modules/argparse/lib/argparse.js +14 -0
- package/test262/node_modules/argparse/lib/argument/error.js +50 -0
- package/test262/node_modules/argparse/lib/argument/exclusive.js +54 -0
- package/test262/node_modules/argparse/lib/argument/group.js +75 -0
- package/test262/node_modules/argparse/lib/argument_parser.js +1161 -0
- package/test262/node_modules/argparse/lib/const.js +21 -0
- package/test262/node_modules/argparse/lib/help/added_formatters.js +87 -0
- package/test262/node_modules/argparse/lib/help/formatter.js +795 -0
- package/test262/node_modules/argparse/lib/namespace.js +76 -0
- package/test262/node_modules/argparse/lib/utils.js +57 -0
- package/test262/node_modules/argparse/package.json +34 -0
- package/test262/node_modules/braces/CHANGELOG.md +184 -0
- package/test262/node_modules/braces/LICENSE +21 -0
- package/test262/node_modules/braces/README.md +593 -0
- package/test262/node_modules/braces/index.js +170 -0
- package/test262/node_modules/braces/lib/compile.js +57 -0
- package/test262/node_modules/braces/lib/constants.js +57 -0
- package/test262/node_modules/braces/lib/expand.js +113 -0
- package/test262/node_modules/braces/lib/parse.js +333 -0
- package/test262/node_modules/braces/lib/stringify.js +32 -0
- package/test262/node_modules/braces/lib/utils.js +112 -0
- package/test262/node_modules/braces/package.json +77 -0
- package/test262/node_modules/esprima/ChangeLog +235 -0
- package/test262/node_modules/esprima/LICENSE.BSD +21 -0
- package/test262/node_modules/esprima/README.md +46 -0
- package/test262/node_modules/esprima/bin/esparse.js +139 -0
- package/test262/node_modules/esprima/bin/esvalidate.js +236 -0
- package/test262/node_modules/esprima/dist/esprima.js +6709 -0
- package/test262/node_modules/esprima/package.json +112 -0
- package/test262/node_modules/fast-glob/LICENSE +21 -0
- package/test262/node_modules/fast-glob/README.md +859 -0
- package/test262/node_modules/fast-glob/out/index.d.ts +40 -0
- package/test262/node_modules/fast-glob/out/index.js +102 -0
- package/test262/node_modules/fast-glob/out/managers/tasks.d.ts +22 -0
- package/test262/node_modules/fast-glob/out/managers/tasks.js +110 -0
- package/test262/node_modules/fast-glob/out/providers/async.d.ts +9 -0
- package/test262/node_modules/fast-glob/out/providers/async.js +23 -0
- package/test262/node_modules/fast-glob/out/providers/filters/deep.d.ts +16 -0
- package/test262/node_modules/fast-glob/out/providers/filters/deep.js +62 -0
- package/test262/node_modules/fast-glob/out/providers/filters/entry.d.ts +16 -0
- package/test262/node_modules/fast-glob/out/providers/filters/entry.js +63 -0
- package/test262/node_modules/fast-glob/out/providers/filters/error.d.ts +8 -0
- package/test262/node_modules/fast-glob/out/providers/filters/error.js +15 -0
- package/test262/node_modules/fast-glob/out/providers/matchers/matcher.d.ts +33 -0
- package/test262/node_modules/fast-glob/out/providers/matchers/matcher.js +45 -0
- package/test262/node_modules/fast-glob/out/providers/matchers/partial.d.ts +4 -0
- package/test262/node_modules/fast-glob/out/providers/matchers/partial.js +38 -0
- package/test262/node_modules/fast-glob/out/providers/provider.d.ts +19 -0
- package/test262/node_modules/fast-glob/out/providers/provider.js +48 -0
- package/test262/node_modules/fast-glob/out/providers/stream.d.ts +11 -0
- package/test262/node_modules/fast-glob/out/providers/stream.js +31 -0
- package/test262/node_modules/fast-glob/out/providers/sync.d.ts +9 -0
- package/test262/node_modules/fast-glob/out/providers/sync.js +23 -0
- package/test262/node_modules/fast-glob/out/providers/transformers/entry.d.ts +8 -0
- package/test262/node_modules/fast-glob/out/providers/transformers/entry.js +26 -0
- package/test262/node_modules/fast-glob/out/readers/async.d.ts +10 -0
- package/test262/node_modules/fast-glob/out/readers/async.js +35 -0
- package/test262/node_modules/fast-glob/out/readers/reader.d.ts +15 -0
- package/test262/node_modules/fast-glob/out/readers/reader.js +33 -0
- package/test262/node_modules/fast-glob/out/readers/stream.d.ts +14 -0
- package/test262/node_modules/fast-glob/out/readers/stream.js +55 -0
- package/test262/node_modules/fast-glob/out/readers/sync.d.ts +12 -0
- package/test262/node_modules/fast-glob/out/readers/sync.js +43 -0
- package/test262/node_modules/fast-glob/out/settings.d.ts +164 -0
- package/test262/node_modules/fast-glob/out/settings.js +57 -0
- package/test262/node_modules/fast-glob/out/types/index.d.ts +31 -0
- package/test262/node_modules/fast-glob/out/types/index.js +2 -0
- package/test262/node_modules/fast-glob/out/utils/array.d.ts +2 -0
- package/test262/node_modules/fast-glob/out/utils/array.js +22 -0
- package/test262/node_modules/fast-glob/out/utils/errno.d.ts +2 -0
- package/test262/node_modules/fast-glob/out/utils/errno.js +7 -0
- package/test262/node_modules/fast-glob/out/utils/fs.d.ts +4 -0
- package/test262/node_modules/fast-glob/out/utils/fs.js +19 -0
- package/test262/node_modules/fast-glob/out/utils/index.d.ts +8 -0
- package/test262/node_modules/fast-glob/out/utils/index.js +17 -0
- package/test262/node_modules/fast-glob/out/utils/path.d.ts +13 -0
- package/test262/node_modules/fast-glob/out/utils/path.js +68 -0
- package/test262/node_modules/fast-glob/out/utils/pattern.d.ts +47 -0
- package/test262/node_modules/fast-glob/out/utils/pattern.js +188 -0
- package/test262/node_modules/fast-glob/out/utils/stream.d.ts +4 -0
- package/test262/node_modules/fast-glob/out/utils/stream.js +17 -0
- package/test262/node_modules/fast-glob/out/utils/string.d.ts +2 -0
- package/test262/node_modules/fast-glob/out/utils/string.js +11 -0
- package/test262/node_modules/fast-glob/package.json +81 -0
- package/test262/node_modules/fastq/.github/dependabot.yml +11 -0
- package/test262/node_modules/fastq/.github/workflows/ci.yml +50 -0
- package/test262/node_modules/fastq/LICENSE +13 -0
- package/test262/node_modules/fastq/README.md +309 -0
- package/test262/node_modules/fastq/bench.js +66 -0
- package/test262/node_modules/fastq/example.js +14 -0
- package/test262/node_modules/fastq/example.mjs +11 -0
- package/test262/node_modules/fastq/index.d.ts +37 -0
- package/test262/node_modules/fastq/package.json +52 -0
- package/test262/node_modules/fastq/queue.js +289 -0
- package/test262/node_modules/fastq/test/example.ts +81 -0
- package/test262/node_modules/fastq/test/promise.js +248 -0
- package/test262/node_modules/fastq/test/test.js +566 -0
- package/test262/node_modules/fastq/test/tsconfig.json +11 -0
- package/test262/node_modules/fill-range/LICENSE +21 -0
- package/test262/node_modules/fill-range/README.md +237 -0
- package/test262/node_modules/fill-range/index.js +249 -0
- package/test262/node_modules/fill-range/package.json +69 -0
- package/test262/node_modules/glob-parent/CHANGELOG.md +110 -0
- package/test262/node_modules/glob-parent/LICENSE +15 -0
- package/test262/node_modules/glob-parent/README.md +137 -0
- package/test262/node_modules/glob-parent/index.js +42 -0
- package/test262/node_modules/glob-parent/package.json +48 -0
- package/test262/node_modules/graceful-fs/LICENSE +15 -0
- package/test262/node_modules/graceful-fs/README.md +143 -0
- package/test262/node_modules/graceful-fs/clone.js +23 -0
- package/test262/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/test262/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/test262/node_modules/graceful-fs/package.json +53 -0
- package/test262/node_modules/graceful-fs/polyfills.js +355 -0
- package/test262/node_modules/is-extglob/LICENSE +21 -0
- package/test262/node_modules/is-extglob/README.md +107 -0
- package/test262/node_modules/is-extglob/index.js +20 -0
- package/test262/node_modules/is-extglob/package.json +69 -0
- package/test262/node_modules/is-glob/LICENSE +21 -0
- package/test262/node_modules/is-glob/README.md +206 -0
- package/test262/node_modules/is-glob/index.js +150 -0
- package/test262/node_modules/is-glob/package.json +81 -0
- package/test262/node_modules/is-number/LICENSE +21 -0
- package/test262/node_modules/is-number/README.md +187 -0
- package/test262/node_modules/is-number/index.js +18 -0
- package/test262/node_modules/is-number/package.json +82 -0
- package/test262/node_modules/js-yaml/CHANGELOG.md +557 -0
- package/test262/node_modules/js-yaml/LICENSE +21 -0
- package/test262/node_modules/js-yaml/README.md +299 -0
- package/test262/node_modules/js-yaml/bin/js-yaml.js +132 -0
- package/test262/node_modules/js-yaml/dist/js-yaml.js +3989 -0
- package/test262/node_modules/js-yaml/dist/js-yaml.min.js +1 -0
- package/test262/node_modules/js-yaml/index.js +7 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/common.js +59 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/dumper.js +850 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/exception.js +43 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/loader.js +1644 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/mark.js +76 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema/core.js +18 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema/default_full.js +25 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js +28 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js +17 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema/json.js +25 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/schema.js +108 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/binary.js +138 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/bool.js +35 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/float.js +116 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/int.js +173 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/js/function.js +93 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js +60 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js +28 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/map.js +8 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/merge.js +12 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/null.js +34 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/omap.js +44 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/pairs.js +53 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/seq.js +8 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/set.js +29 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/str.js +8 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type/timestamp.js +88 -0
- package/test262/node_modules/js-yaml/lib/js-yaml/type.js +61 -0
- package/test262/node_modules/js-yaml/lib/js-yaml.js +39 -0
- package/test262/node_modules/js-yaml/package.json +49 -0
- package/test262/node_modules/klaw/CHANGELOG.md +62 -0
- package/test262/node_modules/klaw/LICENSE +15 -0
- package/test262/node_modules/klaw/README.md +252 -0
- package/test262/node_modules/klaw/package.json +40 -0
- package/test262/node_modules/klaw/src/index.js +56 -0
- package/test262/node_modules/merge2/LICENSE +21 -0
- package/test262/node_modules/merge2/README.md +144 -0
- package/test262/node_modules/merge2/index.js +144 -0
- package/test262/node_modules/merge2/package.json +43 -0
- package/test262/node_modules/micromatch/LICENSE +21 -0
- package/test262/node_modules/micromatch/README.md +1011 -0
- package/test262/node_modules/micromatch/index.js +467 -0
- package/test262/node_modules/micromatch/package.json +119 -0
- package/test262/node_modules/picomatch/CHANGELOG.md +136 -0
- package/test262/node_modules/picomatch/LICENSE +21 -0
- package/test262/node_modules/picomatch/README.md +708 -0
- package/test262/node_modules/picomatch/index.js +3 -0
- package/test262/node_modules/picomatch/lib/constants.js +179 -0
- package/test262/node_modules/picomatch/lib/parse.js +1091 -0
- package/test262/node_modules/picomatch/lib/picomatch.js +342 -0
- package/test262/node_modules/picomatch/lib/scan.js +391 -0
- package/test262/node_modules/picomatch/lib/utils.js +64 -0
- package/test262/node_modules/picomatch/package.json +81 -0
- package/test262/node_modules/queue-microtask/LICENSE +20 -0
- package/test262/node_modules/queue-microtask/README.md +90 -0
- package/test262/node_modules/queue-microtask/index.d.ts +2 -0
- package/test262/node_modules/queue-microtask/index.js +9 -0
- package/test262/node_modules/queue-microtask/package.json +55 -0
- package/test262/node_modules/reusify/.coveralls.yml +1 -0
- package/test262/node_modules/reusify/.travis.yml +28 -0
- package/test262/node_modules/reusify/LICENSE +22 -0
- package/test262/node_modules/reusify/README.md +145 -0
- package/test262/node_modules/reusify/benchmarks/createNoCodeFunction.js +30 -0
- package/test262/node_modules/reusify/benchmarks/fib.js +13 -0
- package/test262/node_modules/reusify/benchmarks/reuseNoCodeFunction.js +38 -0
- package/test262/node_modules/reusify/package.json +45 -0
- package/test262/node_modules/reusify/reusify.js +33 -0
- package/test262/node_modules/reusify/test.js +66 -0
- package/test262/node_modules/run-parallel/LICENSE +20 -0
- package/test262/node_modules/run-parallel/README.md +85 -0
- package/test262/node_modules/run-parallel/index.js +51 -0
- package/test262/node_modules/run-parallel/package.json +58 -0
- package/test262/node_modules/sprintf-js/LICENSE +24 -0
- package/test262/node_modules/sprintf-js/README.md +88 -0
- package/test262/node_modules/sprintf-js/bower.json +14 -0
- package/test262/node_modules/sprintf-js/demo/angular.html +20 -0
- package/test262/node_modules/sprintf-js/dist/angular-sprintf.min.js +4 -0
- package/test262/node_modules/sprintf-js/dist/angular-sprintf.min.js.map +1 -0
- package/test262/node_modules/sprintf-js/dist/angular-sprintf.min.map +1 -0
- package/test262/node_modules/sprintf-js/dist/sprintf.min.js +4 -0
- package/test262/node_modules/sprintf-js/dist/sprintf.min.js.map +1 -0
- package/test262/node_modules/sprintf-js/dist/sprintf.min.map +1 -0
- package/test262/node_modules/sprintf-js/gruntfile.js +36 -0
- package/test262/node_modules/sprintf-js/package.json +22 -0
- package/test262/node_modules/sprintf-js/src/angular-sprintf.js +18 -0
- package/test262/node_modules/sprintf-js/src/sprintf.js +208 -0
- package/test262/node_modules/sprintf-js/test/test.js +82 -0
- package/test262/node_modules/test262-stream/.jshintignore +2 -0
- package/test262/node_modules/test262-stream/.jshintrc +6 -0
- package/test262/node_modules/test262-stream/.travis.yml +5 -0
- package/test262/node_modules/test262-stream/CONTRIBUTING.md +37 -0
- package/test262/node_modules/test262-stream/LICENSE-MICROSOFT.txt +27 -0
- package/test262/node_modules/test262-stream/LICENSE.txt +27 -0
- package/test262/node_modules/test262-stream/README.md +71 -0
- package/test262/node_modules/test262-stream/lib/builder.js +46 -0
- package/test262/node_modules/test262-stream/lib/compile.js +24 -0
- package/test262/node_modules/test262-stream/lib/create-scenarios.js +29 -0
- package/test262/node_modules/test262-stream/lib/index.js +187 -0
- package/test262/node_modules/test262-stream/lib/test-file.js +150 -0
- package/test262/node_modules/test262-stream/package.json +26 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-missing-harness/fake-test262/test/a-test-file.js +16 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-other-accepted/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-other-accepted/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-other-accepted/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-other-accepted/fake-test262/package.json +3 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-other-accepted/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-unsupported/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-unsupported/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-unsupported/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-unsupported/fake-test262/package.json +3 -0
- package/test262/node_modules/test262-stream/test/collateral/invalid-version-unsupported/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/asyncNegative_default.js +49 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/asyncNegative_strict_mode.js +50 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/async_default.js +48 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/async_strict_mode.js +49 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/bothStrict_default.js +46 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/bothStrict_strict_mode.js +47 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/error_default.js +39 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/error_strict_mode.js +40 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/module_default.js +37 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/module_strict_mode.js +38 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/negative-empty_default.js +37 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/negative-empty_strict_mode.js +38 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/noStrict_default.js +36 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/rawNoStrict_default.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/rawStrict_default.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-content/test/strict_strict_mode.js +41 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/asyncNegative_default.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/asyncNegative_strict_mode.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/async_default.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/async_strict_mode.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/bothStrict_default.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/bothStrict_strict_mode.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/error_default.json +19 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/error_strict_mode.json +19 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/module_default.json +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/module_strict_mode.json +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/negative-empty_default.json +19 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/negative-empty_strict_mode.json +19 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/noStrict_default.json +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/rawNoStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/rawStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/expected-metadata/test/strict_strict_mode.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/async.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/asyncNegative.js +11 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/bothStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/error.js +8 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/module.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/module_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/negative-empty.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/noStrict.js +5 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/rawNoStrict.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/rawStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-default/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/expected-content/test/bothStrict_default.js +46 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/expected-content/test/bothStrict_strict_mode.js +47 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/expected-metadata/test/bothStrict_default.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/expected-metadata/test/bothStrict_strict_mode.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/bothStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-0_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-1_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-2_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-3_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-4_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-5_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-6_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-7_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-8_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-extra-files/fake-test262/test/zzz-9_FIXTURE.txt +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-content/test/raw_default.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-content/test/runtime_default.js +38 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-content/test/runtime_strict_mode.js +39 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-metadata/test/raw_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-metadata/test/runtime_default.json +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/expected-metadata/test/runtime_strict_mode.json +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/fake-test262/test/raw.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-insertionindex-with-copyright/fake-test262/test/runtime.js +7 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/asyncNegative_default.js +11 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/asyncNegative_strict_mode.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/async_default.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/async_strict_mode.js +11 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/bothStrict_default.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/bothStrict_strict_mode.js +16 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/error_default.js +8 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/error_strict_mode.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/module_default.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/module_strict_mode.js +7 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/negative-empty_default.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/negative-empty_strict_mode.js +7 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/noStrict_default.js +5 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/rawNoStrict_default.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/rawStrict_default.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-content/test/strict_strict_mode.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/asyncNegative_default.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/asyncNegative_strict_mode.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/async_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/async_strict_mode.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/bothStrict_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/bothStrict_strict_mode.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/error_default.json +16 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/error_strict_mode.json +16 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/module_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/module_strict_mode.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/negative-empty_default.json +16 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/negative-empty_strict_mode.json +16 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/noStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/rawNoStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/rawStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/expected-metadata/test/strict_strict_mode.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/async.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/asyncNegative.js +11 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/bothStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/error.js +8 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/module.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/module_FIXTURE.js +2 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/negative-empty.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/noStrict.js +5 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/rawNoStrict.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/rawStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-omit-runtime/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/expected-content/test/strict_strict_mode.js +41 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/expected-metadata/test/strict_strict_mode.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/fake-test262/package.json +3 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-ignored/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/expected-content/test/strict_strict_mode.js +41 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/expected-metadata/test/strict_strict_mode.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/fake-test262/package.json +3 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-version-supported/fake-test262/test/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/missing-raw-flag_default.js +44 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/missing-raw-flag_strict_mode.js +45 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ls-and-license-on-same-line_default.js +20 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ls-multiline-block_default.js +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ls_default.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ps-and-license-on-same-line_default.js +20 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ps-multiline-block_default.js +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw-with-ps_default.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/rawWithLicense_default.js +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-content/test/raw_default.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/missing-raw-flag_default.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/missing-raw-flag_strict_mode.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ls-and-license-on-same-line_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ls-multiline-block_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ls_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ps-and-license-on-same-line_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ps-multiline-block_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw-with-ps_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/rawWithLicense_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/expected-metadata/test/raw_default.json +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/missing-raw-flag.js +13 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ls-and-license-on-same-line.js +20 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ls-multiline-block.js +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ls.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ps-and-license-on-same-line.js +20 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ps-multiline-block.js +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw-with-ps.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/raw.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-hashbang/fake-test262/test/rawWithLicense.js +21 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/custom-includes/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/custom-includes/doneprintHandle.js +9 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/custom-includes/sta.js +13 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-content/test/async_default.js +52 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-content/test/async_strict_mode.js +53 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-content/test/bothStrict_default.js +47 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-content/test/bothStrict_strict_mode.js +48 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-metadata/test/async_default.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-metadata/test/async_strict_mode.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-metadata/test/bothStrict_default.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/expected-metadata/test/bothStrict_strict_mode.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/fake-test262/test/async.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-includes/fake-test262/test/bothStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/async/asyncNegative_default.js +49 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/async/asyncNegative_strict_mode.js +50 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/async/async_default.js +48 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/async/async_strict_mode.js +49 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/bothStrict_default.js +46 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/bothStrict_strict_mode.js +47 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/strict/no/noStrict_default.js +36 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-content/test/strict/no/rawNoStrict_default.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/async/asyncNegative_default.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/async/asyncNegative_strict_mode.json +22 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/async/async_default.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/async/async_strict_mode.json +18 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/bothStrict_default.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/bothStrict_strict_mode.json +24 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/strict/no/noStrict_default.json +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/expected-metadata/test/strict/no/rawNoStrict_default.json +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/harness/assert.js +17 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/harness/doneprintHandle.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/harness/sta.js +12 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/async/async.js +10 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/async/asyncNegative.js +11 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/bothStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/error.js +8 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/negative-empty.js +6 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/strict/no/noStrict.js +5 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/strict/no/rawNoStrict.js +14 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/strict/rawStrict.js +15 -0
- package/test262/node_modules/test262-stream/test/collateral/valid-with-paths/fake-test262/test/strict/strict.js +9 -0
- package/test262/node_modules/test262-stream/test/test.js +319 -0
- package/test262/node_modules/to-regex-range/LICENSE +21 -0
- package/test262/node_modules/to-regex-range/README.md +305 -0
- package/test262/node_modules/to-regex-range/index.js +288 -0
- package/test262/node_modules/to-regex-range/package.json +88 -0
- package/test262/package-lock.json +279 -0
- package/test262/package.json +6 -0
- package/test262/prelude.js +75 -0
- package/test262/results.json +1 -0
- package/util/enum.js +20 -0
@@ -0,0 +1,795 @@
|
|
1
|
+
/**
|
2
|
+
* class HelpFormatter
|
3
|
+
*
|
4
|
+
* Formatter for generating usage messages and argument help strings. Only the
|
5
|
+
* name of this class is considered a public API. All the methods provided by
|
6
|
+
* the class are considered an implementation detail.
|
7
|
+
*
|
8
|
+
* Do not call in your code, use this class only for inherits your own forvatter
|
9
|
+
*
|
10
|
+
* ToDo add [additonal formatters][1]
|
11
|
+
*
|
12
|
+
* [1]:http://docs.python.org/dev/library/argparse.html#formatter-class
|
13
|
+
**/
|
14
|
+
'use strict';
|
15
|
+
|
16
|
+
var sprintf = require('sprintf-js').sprintf;
|
17
|
+
|
18
|
+
// Constants
|
19
|
+
var c = require('../const');
|
20
|
+
|
21
|
+
var $$ = require('../utils');
|
22
|
+
|
23
|
+
|
24
|
+
/*:nodoc:* internal
|
25
|
+
* new Support(parent, heding)
|
26
|
+
* - parent (object): parent section
|
27
|
+
* - heading (string): header string
|
28
|
+
*
|
29
|
+
**/
|
30
|
+
function Section(parent, heading) {
|
31
|
+
this._parent = parent;
|
32
|
+
this._heading = heading;
|
33
|
+
this._items = [];
|
34
|
+
}
|
35
|
+
|
36
|
+
/*:nodoc:* internal
|
37
|
+
* Section#addItem(callback) -> Void
|
38
|
+
* - callback (array): tuple with function and args
|
39
|
+
*
|
40
|
+
* Add function for single element
|
41
|
+
**/
|
42
|
+
Section.prototype.addItem = function (callback) {
|
43
|
+
this._items.push(callback);
|
44
|
+
};
|
45
|
+
|
46
|
+
/*:nodoc:* internal
|
47
|
+
* Section#formatHelp(formatter) -> string
|
48
|
+
* - formatter (HelpFormatter): current formatter
|
49
|
+
*
|
50
|
+
* Form help section string
|
51
|
+
*
|
52
|
+
**/
|
53
|
+
Section.prototype.formatHelp = function (formatter) {
|
54
|
+
var itemHelp, heading;
|
55
|
+
|
56
|
+
// format the indented section
|
57
|
+
if (this._parent) {
|
58
|
+
formatter._indent();
|
59
|
+
}
|
60
|
+
|
61
|
+
itemHelp = this._items.map(function (item) {
|
62
|
+
var obj, func, args;
|
63
|
+
|
64
|
+
obj = formatter;
|
65
|
+
func = item[0];
|
66
|
+
args = item[1];
|
67
|
+
return func.apply(obj, args);
|
68
|
+
});
|
69
|
+
itemHelp = formatter._joinParts(itemHelp);
|
70
|
+
|
71
|
+
if (this._parent) {
|
72
|
+
formatter._dedent();
|
73
|
+
}
|
74
|
+
|
75
|
+
// return nothing if the section was empty
|
76
|
+
if (!itemHelp) {
|
77
|
+
return '';
|
78
|
+
}
|
79
|
+
|
80
|
+
// add the heading if the section was non-empty
|
81
|
+
heading = '';
|
82
|
+
if (this._heading && this._heading !== c.SUPPRESS) {
|
83
|
+
var currentIndent = formatter.currentIndent;
|
84
|
+
heading = $$.repeat(' ', currentIndent) + this._heading + ':' + c.EOL;
|
85
|
+
}
|
86
|
+
|
87
|
+
// join the section-initialize newline, the heading and the help
|
88
|
+
return formatter._joinParts([ c.EOL, heading, itemHelp, c.EOL ]);
|
89
|
+
};
|
90
|
+
|
91
|
+
/**
|
92
|
+
* new HelpFormatter(options)
|
93
|
+
*
|
94
|
+
* #### Options:
|
95
|
+
* - `prog`: program name
|
96
|
+
* - `indentIncriment`: indent step, default value 2
|
97
|
+
* - `maxHelpPosition`: max help position, default value = 24
|
98
|
+
* - `width`: line width
|
99
|
+
*
|
100
|
+
**/
|
101
|
+
var HelpFormatter = module.exports = function HelpFormatter(options) {
|
102
|
+
options = options || {};
|
103
|
+
|
104
|
+
this._prog = options.prog;
|
105
|
+
|
106
|
+
this._maxHelpPosition = options.maxHelpPosition || 24;
|
107
|
+
this._width = (options.width || ((process.env.COLUMNS || 80) - 2));
|
108
|
+
|
109
|
+
this._currentIndent = 0;
|
110
|
+
this._indentIncriment = options.indentIncriment || 2;
|
111
|
+
this._level = 0;
|
112
|
+
this._actionMaxLength = 0;
|
113
|
+
|
114
|
+
this._rootSection = new Section(null);
|
115
|
+
this._currentSection = this._rootSection;
|
116
|
+
|
117
|
+
this._whitespaceMatcher = new RegExp('\\s+', 'g');
|
118
|
+
this._longBreakMatcher = new RegExp(c.EOL + c.EOL + c.EOL + '+', 'g');
|
119
|
+
};
|
120
|
+
|
121
|
+
HelpFormatter.prototype._indent = function () {
|
122
|
+
this._currentIndent += this._indentIncriment;
|
123
|
+
this._level += 1;
|
124
|
+
};
|
125
|
+
|
126
|
+
HelpFormatter.prototype._dedent = function () {
|
127
|
+
this._currentIndent -= this._indentIncriment;
|
128
|
+
this._level -= 1;
|
129
|
+
if (this._currentIndent < 0) {
|
130
|
+
throw new Error('Indent decreased below 0.');
|
131
|
+
}
|
132
|
+
};
|
133
|
+
|
134
|
+
HelpFormatter.prototype._addItem = function (func, args) {
|
135
|
+
this._currentSection.addItem([ func, args ]);
|
136
|
+
};
|
137
|
+
|
138
|
+
//
|
139
|
+
// Message building methods
|
140
|
+
//
|
141
|
+
|
142
|
+
/**
|
143
|
+
* HelpFormatter#startSection(heading) -> Void
|
144
|
+
* - heading (string): header string
|
145
|
+
*
|
146
|
+
* Start new help section
|
147
|
+
*
|
148
|
+
* See alse [code example][1]
|
149
|
+
*
|
150
|
+
* ##### Example
|
151
|
+
*
|
152
|
+
* formatter.startSection(actionGroup.title);
|
153
|
+
* formatter.addText(actionGroup.description);
|
154
|
+
* formatter.addArguments(actionGroup._groupActions);
|
155
|
+
* formatter.endSection();
|
156
|
+
*
|
157
|
+
**/
|
158
|
+
HelpFormatter.prototype.startSection = function (heading) {
|
159
|
+
this._indent();
|
160
|
+
var section = new Section(this._currentSection, heading);
|
161
|
+
var func = section.formatHelp.bind(section);
|
162
|
+
this._addItem(func, [ this ]);
|
163
|
+
this._currentSection = section;
|
164
|
+
};
|
165
|
+
|
166
|
+
/**
|
167
|
+
* HelpFormatter#endSection -> Void
|
168
|
+
*
|
169
|
+
* End help section
|
170
|
+
*
|
171
|
+
* ##### Example
|
172
|
+
*
|
173
|
+
* formatter.startSection(actionGroup.title);
|
174
|
+
* formatter.addText(actionGroup.description);
|
175
|
+
* formatter.addArguments(actionGroup._groupActions);
|
176
|
+
* formatter.endSection();
|
177
|
+
**/
|
178
|
+
HelpFormatter.prototype.endSection = function () {
|
179
|
+
this._currentSection = this._currentSection._parent;
|
180
|
+
this._dedent();
|
181
|
+
};
|
182
|
+
|
183
|
+
/**
|
184
|
+
* HelpFormatter#addText(text) -> Void
|
185
|
+
* - text (string): plain text
|
186
|
+
*
|
187
|
+
* Add plain text into current section
|
188
|
+
*
|
189
|
+
* ##### Example
|
190
|
+
*
|
191
|
+
* formatter.startSection(actionGroup.title);
|
192
|
+
* formatter.addText(actionGroup.description);
|
193
|
+
* formatter.addArguments(actionGroup._groupActions);
|
194
|
+
* formatter.endSection();
|
195
|
+
*
|
196
|
+
**/
|
197
|
+
HelpFormatter.prototype.addText = function (text) {
|
198
|
+
if (text && text !== c.SUPPRESS) {
|
199
|
+
this._addItem(this._formatText, [ text ]);
|
200
|
+
}
|
201
|
+
};
|
202
|
+
|
203
|
+
/**
|
204
|
+
* HelpFormatter#addUsage(usage, actions, groups, prefix) -> Void
|
205
|
+
* - usage (string): usage text
|
206
|
+
* - actions (array): actions list
|
207
|
+
* - groups (array): groups list
|
208
|
+
* - prefix (string): usage prefix
|
209
|
+
*
|
210
|
+
* Add usage data into current section
|
211
|
+
*
|
212
|
+
* ##### Example
|
213
|
+
*
|
214
|
+
* formatter.addUsage(this.usage, this._actions, []);
|
215
|
+
* return formatter.formatHelp();
|
216
|
+
*
|
217
|
+
**/
|
218
|
+
HelpFormatter.prototype.addUsage = function (usage, actions, groups, prefix) {
|
219
|
+
if (usage !== c.SUPPRESS) {
|
220
|
+
this._addItem(this._formatUsage, [ usage, actions, groups, prefix ]);
|
221
|
+
}
|
222
|
+
};
|
223
|
+
|
224
|
+
/**
|
225
|
+
* HelpFormatter#addArgument(action) -> Void
|
226
|
+
* - action (object): action
|
227
|
+
*
|
228
|
+
* Add argument into current section
|
229
|
+
*
|
230
|
+
* Single variant of [[HelpFormatter#addArguments]]
|
231
|
+
**/
|
232
|
+
HelpFormatter.prototype.addArgument = function (action) {
|
233
|
+
if (action.help !== c.SUPPRESS) {
|
234
|
+
var self = this;
|
235
|
+
|
236
|
+
// find all invocations
|
237
|
+
var invocations = [ this._formatActionInvocation(action) ];
|
238
|
+
var invocationLength = invocations[0].length;
|
239
|
+
|
240
|
+
var actionLength;
|
241
|
+
|
242
|
+
if (action._getSubactions) {
|
243
|
+
this._indent();
|
244
|
+
action._getSubactions().forEach(function (subaction) {
|
245
|
+
|
246
|
+
var invocationNew = self._formatActionInvocation(subaction);
|
247
|
+
invocations.push(invocationNew);
|
248
|
+
invocationLength = Math.max(invocationLength, invocationNew.length);
|
249
|
+
|
250
|
+
});
|
251
|
+
this._dedent();
|
252
|
+
}
|
253
|
+
|
254
|
+
// update the maximum item length
|
255
|
+
actionLength = invocationLength + this._currentIndent;
|
256
|
+
this._actionMaxLength = Math.max(this._actionMaxLength, actionLength);
|
257
|
+
|
258
|
+
// add the item to the list
|
259
|
+
this._addItem(this._formatAction, [ action ]);
|
260
|
+
}
|
261
|
+
};
|
262
|
+
|
263
|
+
/**
|
264
|
+
* HelpFormatter#addArguments(actions) -> Void
|
265
|
+
* - actions (array): actions list
|
266
|
+
*
|
267
|
+
* Mass add arguments into current section
|
268
|
+
*
|
269
|
+
* ##### Example
|
270
|
+
*
|
271
|
+
* formatter.startSection(actionGroup.title);
|
272
|
+
* formatter.addText(actionGroup.description);
|
273
|
+
* formatter.addArguments(actionGroup._groupActions);
|
274
|
+
* formatter.endSection();
|
275
|
+
*
|
276
|
+
**/
|
277
|
+
HelpFormatter.prototype.addArguments = function (actions) {
|
278
|
+
var self = this;
|
279
|
+
actions.forEach(function (action) {
|
280
|
+
self.addArgument(action);
|
281
|
+
});
|
282
|
+
};
|
283
|
+
|
284
|
+
//
|
285
|
+
// Help-formatting methods
|
286
|
+
//
|
287
|
+
|
288
|
+
/**
|
289
|
+
* HelpFormatter#formatHelp -> string
|
290
|
+
*
|
291
|
+
* Format help
|
292
|
+
*
|
293
|
+
* ##### Example
|
294
|
+
*
|
295
|
+
* formatter.addText(this.epilog);
|
296
|
+
* return formatter.formatHelp();
|
297
|
+
*
|
298
|
+
**/
|
299
|
+
HelpFormatter.prototype.formatHelp = function () {
|
300
|
+
var help = this._rootSection.formatHelp(this);
|
301
|
+
if (help) {
|
302
|
+
help = help.replace(this._longBreakMatcher, c.EOL + c.EOL);
|
303
|
+
help = $$.trimChars(help, c.EOL) + c.EOL;
|
304
|
+
}
|
305
|
+
return help;
|
306
|
+
};
|
307
|
+
|
308
|
+
HelpFormatter.prototype._joinParts = function (partStrings) {
|
309
|
+
return partStrings.filter(function (part) {
|
310
|
+
return (part && part !== c.SUPPRESS);
|
311
|
+
}).join('');
|
312
|
+
};
|
313
|
+
|
314
|
+
HelpFormatter.prototype._formatUsage = function (usage, actions, groups, prefix) {
|
315
|
+
if (!prefix && typeof prefix !== 'string') {
|
316
|
+
prefix = 'usage: ';
|
317
|
+
}
|
318
|
+
|
319
|
+
actions = actions || [];
|
320
|
+
groups = groups || [];
|
321
|
+
|
322
|
+
|
323
|
+
// if usage is specified, use that
|
324
|
+
if (usage) {
|
325
|
+
usage = sprintf(usage, { prog: this._prog });
|
326
|
+
|
327
|
+
// if no optionals or positionals are available, usage is just prog
|
328
|
+
} else if (!usage && actions.length === 0) {
|
329
|
+
usage = this._prog;
|
330
|
+
|
331
|
+
// if optionals and positionals are available, calculate usage
|
332
|
+
} else if (!usage) {
|
333
|
+
var prog = this._prog;
|
334
|
+
var optionals = [];
|
335
|
+
var positionals = [];
|
336
|
+
var actionUsage;
|
337
|
+
var textWidth;
|
338
|
+
|
339
|
+
// split optionals from positionals
|
340
|
+
actions.forEach(function (action) {
|
341
|
+
if (action.isOptional()) {
|
342
|
+
optionals.push(action);
|
343
|
+
} else {
|
344
|
+
positionals.push(action);
|
345
|
+
}
|
346
|
+
});
|
347
|
+
|
348
|
+
// build full usage string
|
349
|
+
actionUsage = this._formatActionsUsage([].concat(optionals, positionals), groups);
|
350
|
+
usage = [ prog, actionUsage ].join(' ');
|
351
|
+
|
352
|
+
// wrap the usage parts if it's too long
|
353
|
+
textWidth = this._width - this._currentIndent;
|
354
|
+
if ((prefix.length + usage.length) > textWidth) {
|
355
|
+
|
356
|
+
// break usage into wrappable parts
|
357
|
+
var regexpPart = new RegExp('\\(.*?\\)+|\\[.*?\\]+|\\S+', 'g');
|
358
|
+
var optionalUsage = this._formatActionsUsage(optionals, groups);
|
359
|
+
var positionalUsage = this._formatActionsUsage(positionals, groups);
|
360
|
+
|
361
|
+
|
362
|
+
var optionalParts = optionalUsage.match(regexpPart);
|
363
|
+
var positionalParts = positionalUsage.match(regexpPart) || [];
|
364
|
+
|
365
|
+
if (optionalParts.join(' ') !== optionalUsage) {
|
366
|
+
throw new Error('assert "optionalParts.join(\' \') === optionalUsage"');
|
367
|
+
}
|
368
|
+
if (positionalParts.join(' ') !== positionalUsage) {
|
369
|
+
throw new Error('assert "positionalParts.join(\' \') === positionalUsage"');
|
370
|
+
}
|
371
|
+
|
372
|
+
// helper for wrapping lines
|
373
|
+
/*eslint-disable func-style*/ // node 0.10 compat
|
374
|
+
var _getLines = function (parts, indent, prefix) {
|
375
|
+
var lines = [];
|
376
|
+
var line = [];
|
377
|
+
|
378
|
+
var lineLength = prefix ? prefix.length - 1 : indent.length - 1;
|
379
|
+
|
380
|
+
parts.forEach(function (part) {
|
381
|
+
if (lineLength + 1 + part.length > textWidth) {
|
382
|
+
lines.push(indent + line.join(' '));
|
383
|
+
line = [];
|
384
|
+
lineLength = indent.length - 1;
|
385
|
+
}
|
386
|
+
line.push(part);
|
387
|
+
lineLength += part.length + 1;
|
388
|
+
});
|
389
|
+
|
390
|
+
if (line) {
|
391
|
+
lines.push(indent + line.join(' '));
|
392
|
+
}
|
393
|
+
if (prefix) {
|
394
|
+
lines[0] = lines[0].substr(indent.length);
|
395
|
+
}
|
396
|
+
return lines;
|
397
|
+
};
|
398
|
+
|
399
|
+
var lines, indent, parts;
|
400
|
+
// if prog is short, follow it with optionals or positionals
|
401
|
+
if (prefix.length + prog.length <= 0.75 * textWidth) {
|
402
|
+
indent = $$.repeat(' ', (prefix.length + prog.length + 1));
|
403
|
+
if (optionalParts) {
|
404
|
+
lines = [].concat(
|
405
|
+
_getLines([ prog ].concat(optionalParts), indent, prefix),
|
406
|
+
_getLines(positionalParts, indent)
|
407
|
+
);
|
408
|
+
} else if (positionalParts) {
|
409
|
+
lines = _getLines([ prog ].concat(positionalParts), indent, prefix);
|
410
|
+
} else {
|
411
|
+
lines = [ prog ];
|
412
|
+
}
|
413
|
+
|
414
|
+
// if prog is long, put it on its own line
|
415
|
+
} else {
|
416
|
+
indent = $$.repeat(' ', prefix.length);
|
417
|
+
parts = optionalParts.concat(positionalParts);
|
418
|
+
lines = _getLines(parts, indent);
|
419
|
+
if (lines.length > 1) {
|
420
|
+
lines = [].concat(
|
421
|
+
_getLines(optionalParts, indent),
|
422
|
+
_getLines(positionalParts, indent)
|
423
|
+
);
|
424
|
+
}
|
425
|
+
lines = [ prog ].concat(lines);
|
426
|
+
}
|
427
|
+
// join lines into usage
|
428
|
+
usage = lines.join(c.EOL);
|
429
|
+
}
|
430
|
+
}
|
431
|
+
|
432
|
+
// prefix with 'usage:'
|
433
|
+
return prefix + usage + c.EOL + c.EOL;
|
434
|
+
};
|
435
|
+
|
436
|
+
HelpFormatter.prototype._formatActionsUsage = function (actions, groups) {
|
437
|
+
// find group indices and identify actions in groups
|
438
|
+
var groupActions = [];
|
439
|
+
var inserts = [];
|
440
|
+
var self = this;
|
441
|
+
|
442
|
+
groups.forEach(function (group) {
|
443
|
+
var end;
|
444
|
+
var i;
|
445
|
+
|
446
|
+
var start = actions.indexOf(group._groupActions[0]);
|
447
|
+
if (start >= 0) {
|
448
|
+
end = start + group._groupActions.length;
|
449
|
+
|
450
|
+
//if (actions.slice(start, end) === group._groupActions) {
|
451
|
+
if ($$.arrayEqual(actions.slice(start, end), group._groupActions)) {
|
452
|
+
group._groupActions.forEach(function (action) {
|
453
|
+
groupActions.push(action);
|
454
|
+
});
|
455
|
+
|
456
|
+
if (!group.required) {
|
457
|
+
if (inserts[start]) {
|
458
|
+
inserts[start] += ' [';
|
459
|
+
} else {
|
460
|
+
inserts[start] = '[';
|
461
|
+
}
|
462
|
+
inserts[end] = ']';
|
463
|
+
} else {
|
464
|
+
if (inserts[start]) {
|
465
|
+
inserts[start] += ' (';
|
466
|
+
} else {
|
467
|
+
inserts[start] = '(';
|
468
|
+
}
|
469
|
+
inserts[end] = ')';
|
470
|
+
}
|
471
|
+
for (i = start + 1; i < end; i += 1) {
|
472
|
+
inserts[i] = '|';
|
473
|
+
}
|
474
|
+
}
|
475
|
+
}
|
476
|
+
});
|
477
|
+
|
478
|
+
// collect all actions format strings
|
479
|
+
var parts = [];
|
480
|
+
|
481
|
+
actions.forEach(function (action, actionIndex) {
|
482
|
+
var part;
|
483
|
+
var optionString;
|
484
|
+
var argsDefault;
|
485
|
+
var argsString;
|
486
|
+
|
487
|
+
// suppressed arguments are marked with None
|
488
|
+
// remove | separators for suppressed arguments
|
489
|
+
if (action.help === c.SUPPRESS) {
|
490
|
+
parts.push(null);
|
491
|
+
if (inserts[actionIndex] === '|') {
|
492
|
+
inserts.splice(actionIndex, actionIndex);
|
493
|
+
} else if (inserts[actionIndex + 1] === '|') {
|
494
|
+
inserts.splice(actionIndex + 1, actionIndex + 1);
|
495
|
+
}
|
496
|
+
|
497
|
+
// produce all arg strings
|
498
|
+
} else if (!action.isOptional()) {
|
499
|
+
part = self._formatArgs(action, action.dest);
|
500
|
+
|
501
|
+
// if it's in a group, strip the outer []
|
502
|
+
if (groupActions.indexOf(action) >= 0) {
|
503
|
+
if (part[0] === '[' && part[part.length - 1] === ']') {
|
504
|
+
part = part.slice(1, -1);
|
505
|
+
}
|
506
|
+
}
|
507
|
+
// add the action string to the list
|
508
|
+
parts.push(part);
|
509
|
+
|
510
|
+
// produce the first way to invoke the option in brackets
|
511
|
+
} else {
|
512
|
+
optionString = action.optionStrings[0];
|
513
|
+
|
514
|
+
// if the Optional doesn't take a value, format is: -s or --long
|
515
|
+
if (action.nargs === 0) {
|
516
|
+
part = '' + optionString;
|
517
|
+
|
518
|
+
// if the Optional takes a value, format is: -s ARGS or --long ARGS
|
519
|
+
} else {
|
520
|
+
argsDefault = action.dest.toUpperCase();
|
521
|
+
argsString = self._formatArgs(action, argsDefault);
|
522
|
+
part = optionString + ' ' + argsString;
|
523
|
+
}
|
524
|
+
// make it look optional if it's not required or in a group
|
525
|
+
if (!action.required && groupActions.indexOf(action) < 0) {
|
526
|
+
part = '[' + part + ']';
|
527
|
+
}
|
528
|
+
// add the action string to the list
|
529
|
+
parts.push(part);
|
530
|
+
}
|
531
|
+
});
|
532
|
+
|
533
|
+
// insert things at the necessary indices
|
534
|
+
for (var i = inserts.length - 1; i >= 0; --i) {
|
535
|
+
if (inserts[i] !== null) {
|
536
|
+
parts.splice(i, 0, inserts[i]);
|
537
|
+
}
|
538
|
+
}
|
539
|
+
|
540
|
+
// join all the action items with spaces
|
541
|
+
var text = parts.filter(function (part) {
|
542
|
+
return !!part;
|
543
|
+
}).join(' ');
|
544
|
+
|
545
|
+
// clean up separators for mutually exclusive groups
|
546
|
+
text = text.replace(/([\[(]) /g, '$1'); // remove spaces
|
547
|
+
text = text.replace(/ ([\])])/g, '$1');
|
548
|
+
text = text.replace(/\[ *\]/g, ''); // remove empty groups
|
549
|
+
text = text.replace(/\( *\)/g, '');
|
550
|
+
text = text.replace(/\(([^|]*)\)/g, '$1'); // remove () from single action groups
|
551
|
+
|
552
|
+
text = text.trim();
|
553
|
+
|
554
|
+
// return the text
|
555
|
+
return text;
|
556
|
+
};
|
557
|
+
|
558
|
+
HelpFormatter.prototype._formatText = function (text) {
|
559
|
+
text = sprintf(text, { prog: this._prog });
|
560
|
+
var textWidth = this._width - this._currentIndent;
|
561
|
+
var indentIncriment = $$.repeat(' ', this._currentIndent);
|
562
|
+
return this._fillText(text, textWidth, indentIncriment) + c.EOL + c.EOL;
|
563
|
+
};
|
564
|
+
|
565
|
+
HelpFormatter.prototype._formatAction = function (action) {
|
566
|
+
var self = this;
|
567
|
+
|
568
|
+
var helpText;
|
569
|
+
var helpLines;
|
570
|
+
var parts;
|
571
|
+
var indentFirst;
|
572
|
+
|
573
|
+
// determine the required width and the entry label
|
574
|
+
var helpPosition = Math.min(this._actionMaxLength + 2, this._maxHelpPosition);
|
575
|
+
var helpWidth = this._width - helpPosition;
|
576
|
+
var actionWidth = helpPosition - this._currentIndent - 2;
|
577
|
+
var actionHeader = this._formatActionInvocation(action);
|
578
|
+
|
579
|
+
// no help; start on same line and add a final newline
|
580
|
+
if (!action.help) {
|
581
|
+
actionHeader = $$.repeat(' ', this._currentIndent) + actionHeader + c.EOL;
|
582
|
+
|
583
|
+
// short action name; start on the same line and pad two spaces
|
584
|
+
} else if (actionHeader.length <= actionWidth) {
|
585
|
+
actionHeader = $$.repeat(' ', this._currentIndent) +
|
586
|
+
actionHeader +
|
587
|
+
' ' +
|
588
|
+
$$.repeat(' ', actionWidth - actionHeader.length);
|
589
|
+
indentFirst = 0;
|
590
|
+
|
591
|
+
// long action name; start on the next line
|
592
|
+
} else {
|
593
|
+
actionHeader = $$.repeat(' ', this._currentIndent) + actionHeader + c.EOL;
|
594
|
+
indentFirst = helpPosition;
|
595
|
+
}
|
596
|
+
|
597
|
+
// collect the pieces of the action help
|
598
|
+
parts = [ actionHeader ];
|
599
|
+
|
600
|
+
// if there was help for the action, add lines of help text
|
601
|
+
if (action.help) {
|
602
|
+
helpText = this._expandHelp(action);
|
603
|
+
helpLines = this._splitLines(helpText, helpWidth);
|
604
|
+
parts.push($$.repeat(' ', indentFirst) + helpLines[0] + c.EOL);
|
605
|
+
helpLines.slice(1).forEach(function (line) {
|
606
|
+
parts.push($$.repeat(' ', helpPosition) + line + c.EOL);
|
607
|
+
});
|
608
|
+
|
609
|
+
// or add a newline if the description doesn't end with one
|
610
|
+
} else if (actionHeader.charAt(actionHeader.length - 1) !== c.EOL) {
|
611
|
+
parts.push(c.EOL);
|
612
|
+
}
|
613
|
+
// if there are any sub-actions, add their help as well
|
614
|
+
if (action._getSubactions) {
|
615
|
+
this._indent();
|
616
|
+
action._getSubactions().forEach(function (subaction) {
|
617
|
+
parts.push(self._formatAction(subaction));
|
618
|
+
});
|
619
|
+
this._dedent();
|
620
|
+
}
|
621
|
+
// return a single string
|
622
|
+
return this._joinParts(parts);
|
623
|
+
};
|
624
|
+
|
625
|
+
HelpFormatter.prototype._formatActionInvocation = function (action) {
|
626
|
+
if (!action.isOptional()) {
|
627
|
+
var format_func = this._metavarFormatter(action, action.dest);
|
628
|
+
var metavars = format_func(1);
|
629
|
+
return metavars[0];
|
630
|
+
}
|
631
|
+
|
632
|
+
var parts = [];
|
633
|
+
var argsDefault;
|
634
|
+
var argsString;
|
635
|
+
|
636
|
+
// if the Optional doesn't take a value, format is: -s, --long
|
637
|
+
if (action.nargs === 0) {
|
638
|
+
parts = parts.concat(action.optionStrings);
|
639
|
+
|
640
|
+
// if the Optional takes a value, format is: -s ARGS, --long ARGS
|
641
|
+
} else {
|
642
|
+
argsDefault = action.dest.toUpperCase();
|
643
|
+
argsString = this._formatArgs(action, argsDefault);
|
644
|
+
action.optionStrings.forEach(function (optionString) {
|
645
|
+
parts.push(optionString + ' ' + argsString);
|
646
|
+
});
|
647
|
+
}
|
648
|
+
return parts.join(', ');
|
649
|
+
};
|
650
|
+
|
651
|
+
HelpFormatter.prototype._metavarFormatter = function (action, metavarDefault) {
|
652
|
+
var result;
|
653
|
+
|
654
|
+
if (action.metavar || action.metavar === '') {
|
655
|
+
result = action.metavar;
|
656
|
+
} else if (action.choices) {
|
657
|
+
var choices = action.choices;
|
658
|
+
|
659
|
+
if (typeof choices === 'string') {
|
660
|
+
choices = choices.split('').join(', ');
|
661
|
+
} else if (Array.isArray(choices)) {
|
662
|
+
choices = choices.join(',');
|
663
|
+
} else {
|
664
|
+
choices = Object.keys(choices).join(',');
|
665
|
+
}
|
666
|
+
result = '{' + choices + '}';
|
667
|
+
} else {
|
668
|
+
result = metavarDefault;
|
669
|
+
}
|
670
|
+
|
671
|
+
return function (size) {
|
672
|
+
if (Array.isArray(result)) {
|
673
|
+
return result;
|
674
|
+
}
|
675
|
+
|
676
|
+
var metavars = [];
|
677
|
+
for (var i = 0; i < size; i += 1) {
|
678
|
+
metavars.push(result);
|
679
|
+
}
|
680
|
+
return metavars;
|
681
|
+
};
|
682
|
+
};
|
683
|
+
|
684
|
+
HelpFormatter.prototype._formatArgs = function (action, metavarDefault) {
|
685
|
+
var result;
|
686
|
+
var metavars;
|
687
|
+
|
688
|
+
var buildMetavar = this._metavarFormatter(action, metavarDefault);
|
689
|
+
|
690
|
+
switch (action.nargs) {
|
691
|
+
/*eslint-disable no-undefined*/
|
692
|
+
case undefined:
|
693
|
+
case null:
|
694
|
+
metavars = buildMetavar(1);
|
695
|
+
result = '' + metavars[0];
|
696
|
+
break;
|
697
|
+
case c.OPTIONAL:
|
698
|
+
metavars = buildMetavar(1);
|
699
|
+
result = '[' + metavars[0] + ']';
|
700
|
+
break;
|
701
|
+
case c.ZERO_OR_MORE:
|
702
|
+
metavars = buildMetavar(2);
|
703
|
+
result = '[' + metavars[0] + ' [' + metavars[1] + ' ...]]';
|
704
|
+
break;
|
705
|
+
case c.ONE_OR_MORE:
|
706
|
+
metavars = buildMetavar(2);
|
707
|
+
result = '' + metavars[0] + ' [' + metavars[1] + ' ...]';
|
708
|
+
break;
|
709
|
+
case c.REMAINDER:
|
710
|
+
result = '...';
|
711
|
+
break;
|
712
|
+
case c.PARSER:
|
713
|
+
metavars = buildMetavar(1);
|
714
|
+
result = metavars[0] + ' ...';
|
715
|
+
break;
|
716
|
+
default:
|
717
|
+
metavars = buildMetavar(action.nargs);
|
718
|
+
result = metavars.join(' ');
|
719
|
+
}
|
720
|
+
return result;
|
721
|
+
};
|
722
|
+
|
723
|
+
HelpFormatter.prototype._expandHelp = function (action) {
|
724
|
+
var params = { prog: this._prog };
|
725
|
+
|
726
|
+
Object.keys(action).forEach(function (actionProperty) {
|
727
|
+
var actionValue = action[actionProperty];
|
728
|
+
|
729
|
+
if (actionValue !== c.SUPPRESS) {
|
730
|
+
params[actionProperty] = actionValue;
|
731
|
+
}
|
732
|
+
});
|
733
|
+
|
734
|
+
if (params.choices) {
|
735
|
+
if (typeof params.choices === 'string') {
|
736
|
+
params.choices = params.choices.split('').join(', ');
|
737
|
+
} else if (Array.isArray(params.choices)) {
|
738
|
+
params.choices = params.choices.join(', ');
|
739
|
+
} else {
|
740
|
+
params.choices = Object.keys(params.choices).join(', ');
|
741
|
+
}
|
742
|
+
}
|
743
|
+
|
744
|
+
return sprintf(this._getHelpString(action), params);
|
745
|
+
};
|
746
|
+
|
747
|
+
HelpFormatter.prototype._splitLines = function (text, width) {
|
748
|
+
var lines = [];
|
749
|
+
var delimiters = [ ' ', '.', ',', '!', '?' ];
|
750
|
+
var re = new RegExp('[' + delimiters.join('') + '][^' + delimiters.join('') + ']*$');
|
751
|
+
|
752
|
+
text = text.replace(/[\n\|\t]/g, ' ');
|
753
|
+
|
754
|
+
text = text.trim();
|
755
|
+
text = text.replace(this._whitespaceMatcher, ' ');
|
756
|
+
|
757
|
+
// Wraps the single paragraph in text (a string) so every line
|
758
|
+
// is at most width characters long.
|
759
|
+
text.split(c.EOL).forEach(function (line) {
|
760
|
+
if (width >= line.length) {
|
761
|
+
lines.push(line);
|
762
|
+
return;
|
763
|
+
}
|
764
|
+
|
765
|
+
var wrapStart = 0;
|
766
|
+
var wrapEnd = width;
|
767
|
+
var delimiterIndex = 0;
|
768
|
+
while (wrapEnd <= line.length) {
|
769
|
+
if (wrapEnd !== line.length && delimiters.indexOf(line[wrapEnd] < -1)) {
|
770
|
+
delimiterIndex = (re.exec(line.substring(wrapStart, wrapEnd)) || {}).index;
|
771
|
+
wrapEnd = wrapStart + delimiterIndex + 1;
|
772
|
+
}
|
773
|
+
lines.push(line.substring(wrapStart, wrapEnd));
|
774
|
+
wrapStart = wrapEnd;
|
775
|
+
wrapEnd += width;
|
776
|
+
}
|
777
|
+
if (wrapStart < line.length) {
|
778
|
+
lines.push(line.substring(wrapStart, wrapEnd));
|
779
|
+
}
|
780
|
+
});
|
781
|
+
|
782
|
+
return lines;
|
783
|
+
};
|
784
|
+
|
785
|
+
HelpFormatter.prototype._fillText = function (text, width, indent) {
|
786
|
+
var lines = this._splitLines(text, width);
|
787
|
+
lines = lines.map(function (line) {
|
788
|
+
return indent + line;
|
789
|
+
});
|
790
|
+
return lines.join(c.EOL);
|
791
|
+
};
|
792
|
+
|
793
|
+
HelpFormatter.prototype._getHelpString = function (action) {
|
794
|
+
return action.help;
|
795
|
+
};
|