jass 0.9.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +47 -0
- data/README.md +45 -0
- data/lib/jass.rb +55 -0
- data/lib/jass/base.rb +141 -0
- data/lib/jass/bundle_processor.rb +28 -0
- data/lib/jass/compiler.rb +112 -0
- data/lib/jass/dependency.rb +14 -0
- data/lib/jass/errors.rb +29 -0
- data/lib/jass/es6_processor.rb +17 -0
- data/lib/jass/function.rb +13 -0
- data/lib/jass/global_directive_processor.rb +12 -0
- data/lib/jass/plugin.rb +13 -0
- data/lib/jass/railtie.rb +12 -0
- data/lib/jass/version.rb +3 -0
- data/vendor/node_modules/@types/acorn/index.d.ts +256 -0
- data/vendor/node_modules/@types/acorn/package.json +29 -0
- data/vendor/node_modules/@types/estree/index.d.ts +546 -0
- data/vendor/node_modules/@types/estree/package.json +22 -0
- data/vendor/node_modules/acorn-dynamic-import/lib/index.js +17 -0
- data/vendor/node_modules/acorn-dynamic-import/lib/inject.js +72 -0
- data/vendor/node_modules/acorn-dynamic-import/lib/walk.js +22 -0
- data/vendor/node_modules/acorn-dynamic-import/package.json +45 -0
- data/vendor/node_modules/acorn-dynamic-import/src/index.js +4 -0
- data/vendor/node_modules/acorn-dynamic-import/src/inject.js +52 -0
- data/vendor/node_modules/acorn-dynamic-import/src/walk.js +12 -0
- data/vendor/node_modules/acorn-es7-plugin/acorn-es7-plugin.js +17 -0
- data/vendor/node_modules/acorn-es7-plugin/acorn-v3.js +333 -0
- data/vendor/node_modules/acorn-es7-plugin/acorn-v4.js +194 -0
- data/vendor/node_modules/acorn-es7-plugin/package.json +29 -0
- data/vendor/node_modules/acorn-jsx/index.js +3 -0
- data/vendor/node_modules/acorn-jsx/inject.js +449 -0
- data/vendor/node_modules/acorn-jsx/package.json +28 -0
- data/vendor/node_modules/acorn-jsx/xhtml.js +255 -0
- data/vendor/node_modules/acorn/bin/_acorn.js +69 -0
- data/vendor/node_modules/acorn/bin/acorn +4 -0
- data/vendor/node_modules/acorn/bin/run_test262.js +22 -0
- data/vendor/node_modules/acorn/bin/test262.whitelist +409 -0
- data/vendor/node_modules/acorn/dist/acorn.es.js +5305 -0
- data/vendor/node_modules/acorn/dist/acorn.js +5336 -0
- data/vendor/node_modules/acorn/dist/acorn_loose.es.js +1412 -0
- data/vendor/node_modules/acorn/dist/acorn_loose.js +1422 -0
- data/vendor/node_modules/acorn/dist/walk.es.js +419 -0
- data/vendor/node_modules/acorn/dist/walk.js +439 -0
- data/vendor/node_modules/acorn/package.json +56 -0
- data/vendor/node_modules/ansi-styles/index.js +165 -0
- data/vendor/node_modules/ansi-styles/package.json +56 -0
- data/vendor/node_modules/arr-diff/index.js +58 -0
- data/vendor/node_modules/arr-diff/package.json +49 -0
- data/vendor/node_modules/arr-flatten/index.js +22 -0
- data/vendor/node_modules/arr-flatten/package.json +76 -0
- data/vendor/node_modules/array-unique/index.js +28 -0
- data/vendor/node_modules/array-unique/package.json +37 -0
- data/vendor/node_modules/braces/index.js +399 -0
- data/vendor/node_modules/braces/package.json +83 -0
- data/vendor/node_modules/buble/bin/buble +24 -0
- data/vendor/node_modules/buble/bin/handleError.js +58 -0
- data/vendor/node_modules/buble/bin/runBuble.js +150 -0
- data/vendor/node_modules/buble/bin/showHelp.js +16 -0
- data/vendor/node_modules/buble/dist/buble-browser-deps.umd.js +14857 -0
- data/vendor/node_modules/buble/dist/buble-browser.cjs.js +9941 -0
- data/vendor/node_modules/buble/dist/buble-browser.es.js +9933 -0
- data/vendor/node_modules/buble/dist/buble.cjs.js +9433 -0
- data/vendor/node_modules/buble/dist/buble.es.js +9425 -0
- data/vendor/node_modules/buble/package.json +74 -0
- data/vendor/node_modules/buble/register.js +90 -0
- data/vendor/node_modules/buble/src/index.js +98 -0
- data/vendor/node_modules/buble/src/program/BlockStatement.js +373 -0
- data/vendor/node_modules/buble/src/program/Node.js +112 -0
- data/vendor/node_modules/buble/src/program/Program.js +74 -0
- data/vendor/node_modules/buble/src/program/Scope.js +116 -0
- data/vendor/node_modules/buble/src/program/extractNames.js +35 -0
- data/vendor/node_modules/buble/src/program/keys.js +4 -0
- data/vendor/node_modules/buble/src/program/types/ArrayExpression.js +70 -0
- data/vendor/node_modules/buble/src/program/types/ArrowFunctionExpression.js +52 -0
- data/vendor/node_modules/buble/src/program/types/AssignmentExpression.js +185 -0
- data/vendor/node_modules/buble/src/program/types/BinaryExpression.js +12 -0
- data/vendor/node_modules/buble/src/program/types/BreakStatement.js +26 -0
- data/vendor/node_modules/buble/src/program/types/CallExpression.js +104 -0
- data/vendor/node_modules/buble/src/program/types/ClassBody.js +237 -0
- data/vendor/node_modules/buble/src/program/types/ClassDeclaration.js +79 -0
- data/vendor/node_modules/buble/src/program/types/ClassExpression.js +51 -0
- data/vendor/node_modules/buble/src/program/types/ContinueStatement.js +17 -0
- data/vendor/node_modules/buble/src/program/types/ExportDefaultDeclaration.js +10 -0
- data/vendor/node_modules/buble/src/program/types/ExportNamedDeclaration.js +10 -0
- data/vendor/node_modules/buble/src/program/types/ForInStatement.js +76 -0
- data/vendor/node_modules/buble/src/program/types/ForOfStatement.js +89 -0
- data/vendor/node_modules/buble/src/program/types/ForStatement.js +54 -0
- data/vendor/node_modules/buble/src/program/types/FunctionDeclaration.js +25 -0
- data/vendor/node_modules/buble/src/program/types/FunctionExpression.js +74 -0
- data/vendor/node_modules/buble/src/program/types/Identifier.js +54 -0
- data/vendor/node_modules/buble/src/program/types/IfStatement.js +29 -0
- data/vendor/node_modules/buble/src/program/types/ImportDeclaration.js +10 -0
- data/vendor/node_modules/buble/src/program/types/ImportDefaultSpecifier.js +8 -0
- data/vendor/node_modules/buble/src/program/types/ImportSpecifier.js +8 -0
- data/vendor/node_modules/buble/src/program/types/JSXAttribute.js +20 -0
- data/vendor/node_modules/buble/src/program/types/JSXClosingElement.js +27 -0
- data/vendor/node_modules/buble/src/program/types/JSXClosingFragment.js +22 -0
- data/vendor/node_modules/buble/src/program/types/JSXElement.js +57 -0
- data/vendor/node_modules/buble/src/program/types/JSXExpressionContainer.js +10 -0
- data/vendor/node_modules/buble/src/program/types/JSXFragment.js +4 -0
- data/vendor/node_modules/buble/src/program/types/JSXOpeningElement.js +93 -0
- data/vendor/node_modules/buble/src/program/types/JSXOpeningFragment.js +7 -0
- data/vendor/node_modules/buble/src/program/types/JSXSpreadAttribute.js +10 -0
- data/vendor/node_modules/buble/src/program/types/Literal.js +43 -0
- data/vendor/node_modules/buble/src/program/types/MemberExpression.js +13 -0
- data/vendor/node_modules/buble/src/program/types/NewExpression.js +55 -0
- data/vendor/node_modules/buble/src/program/types/ObjectExpression.js +250 -0
- data/vendor/node_modules/buble/src/program/types/Property.js +52 -0
- data/vendor/node_modules/buble/src/program/types/ReturnStatement.js +32 -0
- data/vendor/node_modules/buble/src/program/types/SpreadElement.js +12 -0
- data/vendor/node_modules/buble/src/program/types/Super.js +88 -0
- data/vendor/node_modules/buble/src/program/types/TaggedTemplateExpression.js +63 -0
- data/vendor/node_modules/buble/src/program/types/TemplateElement.js +7 -0
- data/vendor/node_modules/buble/src/program/types/TemplateLiteral.js +80 -0
- data/vendor/node_modules/buble/src/program/types/ThisExpression.js +31 -0
- data/vendor/node_modules/buble/src/program/types/UpdateExpression.js +32 -0
- data/vendor/node_modules/buble/src/program/types/VariableDeclaration.js +101 -0
- data/vendor/node_modules/buble/src/program/types/VariableDeclarator.js +43 -0
- data/vendor/node_modules/buble/src/program/types/index.js +98 -0
- data/vendor/node_modules/buble/src/program/types/shared/LoopStatement.js +105 -0
- data/vendor/node_modules/buble/src/program/types/shared/ModuleDeclaration.js +10 -0
- data/vendor/node_modules/buble/src/program/wrap.js +68 -0
- data/vendor/node_modules/buble/src/support.js +97 -0
- data/vendor/node_modules/buble/src/utils/CompileError.js +30 -0
- data/vendor/node_modules/buble/src/utils/array.js +11 -0
- data/vendor/node_modules/buble/src/utils/checkConst.js +8 -0
- data/vendor/node_modules/buble/src/utils/deindent.js +30 -0
- data/vendor/node_modules/buble/src/utils/destructure.js +377 -0
- data/vendor/node_modules/buble/src/utils/getSnippet.js +30 -0
- data/vendor/node_modules/buble/src/utils/isReference.js +41 -0
- data/vendor/node_modules/buble/src/utils/locate.js +20 -0
- data/vendor/node_modules/buble/src/utils/patterns.js +1 -0
- data/vendor/node_modules/buble/src/utils/removeTrailingComma.js +13 -0
- data/vendor/node_modules/buble/src/utils/reserved.js +6 -0
- data/vendor/node_modules/buble/src/utils/spread.js +70 -0
- data/vendor/node_modules/builtin-modules/builtin-modules.json +39 -0
- data/vendor/node_modules/builtin-modules/index.js +10 -0
- data/vendor/node_modules/builtin-modules/package.json +40 -0
- data/vendor/node_modules/builtin-modules/static.js +2 -0
- data/vendor/node_modules/chalk/index.js +228 -0
- data/vendor/node_modules/chalk/package.json +66 -0
- data/vendor/node_modules/chalk/templates.js +128 -0
- data/vendor/node_modules/chalk/types/index.d.ts +97 -0
- data/vendor/node_modules/color-convert/conversions.js +861 -0
- data/vendor/node_modules/color-convert/index.js +78 -0
- data/vendor/node_modules/color-convert/package.json +46 -0
- data/vendor/node_modules/color-convert/route.js +97 -0
- data/vendor/node_modules/color-name/index.js +152 -0
- data/vendor/node_modules/color-name/package.json +25 -0
- data/vendor/node_modules/color-name/test.js +7 -0
- data/vendor/node_modules/date-time/index.js +33 -0
- data/vendor/node_modules/date-time/package.json +39 -0
- data/vendor/node_modules/escape-string-regexp/index.js +11 -0
- data/vendor/node_modules/escape-string-regexp/package.json +41 -0
- data/vendor/node_modules/estree-walker/dist/estree-walker.es.js +57 -0
- data/vendor/node_modules/estree-walker/dist/estree-walker.umd.js +68 -0
- data/vendor/node_modules/estree-walker/package.json +34 -0
- data/vendor/node_modules/estree-walker/src/estree-walker.js +51 -0
- data/vendor/node_modules/expand-brackets/index.js +163 -0
- data/vendor/node_modules/expand-brackets/package.json +62 -0
- data/vendor/node_modules/expand-range/index.js +43 -0
- data/vendor/node_modules/expand-range/package.json +73 -0
- data/vendor/node_modules/extglob/index.js +178 -0
- data/vendor/node_modules/extglob/package.json +60 -0
- data/vendor/node_modules/filename-regex/index.js +10 -0
- data/vendor/node_modules/filename-regex/package.json +50 -0
- data/vendor/node_modules/fill-range/index.js +408 -0
- data/vendor/node_modules/fill-range/package.json +61 -0
- data/vendor/node_modules/for-in/index.js +16 -0
- data/vendor/node_modules/for-in/package.json +68 -0
- data/vendor/node_modules/for-own/index.js +19 -0
- data/vendor/node_modules/for-own/package.json +70 -0
- data/vendor/node_modules/glob-base/index.js +51 -0
- data/vendor/node_modules/glob-base/package.json +52 -0
- data/vendor/node_modules/glob-parent/index.js +10 -0
- data/vendor/node_modules/glob-parent/package.json +35 -0
- data/vendor/node_modules/glob-parent/test.js +28 -0
- data/vendor/node_modules/has-flag/index.js +8 -0
- data/vendor/node_modules/has-flag/package.json +44 -0
- data/vendor/node_modules/irregular-plurals/irregular-plurals.json +146 -0
- data/vendor/node_modules/irregular-plurals/package.json +39 -0
- data/vendor/node_modules/is-buffer/index.js +21 -0
- data/vendor/node_modules/is-buffer/package.json +51 -0
- data/vendor/node_modules/is-dotfile/index.js +14 -0
- data/vendor/node_modules/is-dotfile/package.json +69 -0
- data/vendor/node_modules/is-equal-shallow/index.js +27 -0
- data/vendor/node_modules/is-equal-shallow/package.json +54 -0
- data/vendor/node_modules/is-extendable/index.js +13 -0
- data/vendor/node_modules/is-extendable/package.json +51 -0
- data/vendor/node_modules/is-extglob/index.js +11 -0
- data/vendor/node_modules/is-extglob/package.json +48 -0
- data/vendor/node_modules/is-glob/index.js +14 -0
- data/vendor/node_modules/is-glob/package.json +60 -0
- data/vendor/node_modules/is-module/index.js +11 -0
- data/vendor/node_modules/is-module/package.json +20 -0
- data/vendor/node_modules/is-number/index.js +19 -0
- data/vendor/node_modules/is-number/package.json +59 -0
- data/vendor/node_modules/is-posix-bracket/index.js +10 -0
- data/vendor/node_modules/is-posix-bracket/package.json +64 -0
- data/vendor/node_modules/is-primitive/index.js +13 -0
- data/vendor/node_modules/is-primitive/package.json +46 -0
- data/vendor/node_modules/is-reference/dist/is-reference.es.js +26 -0
- data/vendor/node_modules/is-reference/dist/is-reference.js +34 -0
- data/vendor/node_modules/is-reference/dist/types/index.d.ts +2 -0
- data/vendor/node_modules/is-reference/package.json +47 -0
- data/vendor/node_modules/isarray/index.js +5 -0
- data/vendor/node_modules/isarray/package.json +45 -0
- data/vendor/node_modules/isarray/test.js +20 -0
- data/vendor/node_modules/isobject/index.js +14 -0
- data/vendor/node_modules/isobject/package.json +67 -0
- data/vendor/node_modules/kind-of/index.js +116 -0
- data/vendor/node_modules/kind-of/package.json +90 -0
- data/vendor/node_modules/locate-character/dist/locate-character.es.js +43 -0
- data/vendor/node_modules/locate-character/dist/locate-character.umd.js +54 -0
- data/vendor/node_modules/locate-character/dist/types/index.d.ts +17 -0
- data/vendor/node_modules/locate-character/package.json +41 -0
- data/vendor/node_modules/magic-string/dist/magic-string.cjs.js +1300 -0
- data/vendor/node_modules/magic-string/dist/magic-string.es.js +1296 -0
- data/vendor/node_modules/magic-string/dist/magic-string.umd.js +1352 -0
- data/vendor/node_modules/magic-string/index.d.ts +83 -0
- data/vendor/node_modules/magic-string/node_modules/vlq/dist/vlq.js +91 -0
- data/vendor/node_modules/magic-string/node_modules/vlq/package.json +27 -0
- data/vendor/node_modules/magic-string/node_modules/vlq/src/vlq.js +78 -0
- data/vendor/node_modules/magic-string/package.json +55 -0
- data/vendor/node_modules/micromatch/index.js +431 -0
- data/vendor/node_modules/micromatch/lib/chars.js +67 -0
- data/vendor/node_modules/micromatch/lib/expand.js +304 -0
- data/vendor/node_modules/micromatch/lib/glob.js +193 -0
- data/vendor/node_modules/micromatch/lib/utils.js +149 -0
- data/vendor/node_modules/micromatch/package.json +114 -0
- data/vendor/node_modules/minimist/index.js +236 -0
- data/vendor/node_modules/minimist/package.json +45 -0
- data/vendor/node_modules/nodent-compiler/compiler.js +171 -0
- data/vendor/node_modules/nodent-compiler/lib/arboriculture.js +2694 -0
- data/vendor/node_modules/nodent-compiler/lib/output.js +934 -0
- data/vendor/node_modules/nodent-compiler/lib/parser.js +291 -0
- data/vendor/node_modules/nodent-compiler/package.json +37 -0
- data/vendor/node_modules/normalize-path/index.js +19 -0
- data/vendor/node_modules/normalize-path/package.json +78 -0
- data/vendor/node_modules/object.omit/index.js +40 -0
- data/vendor/node_modules/object.omit/package.json +67 -0
- data/vendor/node_modules/os-homedir/index.js +24 -0
- data/vendor/node_modules/os-homedir/package.json +41 -0
- data/vendor/node_modules/parse-glob/index.js +156 -0
- data/vendor/node_modules/parse-glob/package.json +62 -0
- data/vendor/node_modules/parse-ms/index.js +16 -0
- data/vendor/node_modules/parse-ms/package.json +34 -0
- data/vendor/node_modules/path-parse/index.js +93 -0
- data/vendor/node_modules/path-parse/index.min.js +1 -0
- data/vendor/node_modules/path-parse/package.json +33 -0
- data/vendor/node_modules/path-parse/test.js +77 -0
- data/vendor/node_modules/path-parse/test.min.js +1 -0
- data/vendor/node_modules/plur/index.js +20 -0
- data/vendor/node_modules/plur/package.json +42 -0
- data/vendor/node_modules/preserve/index.js +54 -0
- data/vendor/node_modules/preserve/package.json +48 -0
- data/vendor/node_modules/preserve/test.js +48 -0
- data/vendor/node_modules/pretty-ms/index.js +48 -0
- data/vendor/node_modules/pretty-ms/package.json +48 -0
- data/vendor/node_modules/randomatic/index.js +82 -0
- data/vendor/node_modules/randomatic/node_modules/is-number/index.js +22 -0
- data/vendor/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/index.js +116 -0
- data/vendor/node_modules/randomatic/node_modules/is-number/node_modules/kind-of/package.json +90 -0
- data/vendor/node_modules/randomatic/node_modules/is-number/package.json +83 -0
- data/vendor/node_modules/randomatic/node_modules/kind-of/index.js +119 -0
- data/vendor/node_modules/randomatic/node_modules/kind-of/package.json +90 -0
- data/vendor/node_modules/randomatic/package.json +78 -0
- data/vendor/node_modules/regex-cache/index.js +68 -0
- data/vendor/node_modules/regex-cache/package.json +64 -0
- data/vendor/node_modules/remove-trailing-separator/index.js +17 -0
- data/vendor/node_modules/remove-trailing-separator/package.json +37 -0
- data/vendor/node_modules/repeat-element/index.js +18 -0
- data/vendor/node_modules/repeat-element/package.json +44 -0
- data/vendor/node_modules/repeat-string/index.js +70 -0
- data/vendor/node_modules/repeat-string/package.json +77 -0
- data/vendor/node_modules/require-relative/index.js +33 -0
- data/vendor/node_modules/require-relative/package.json +22 -0
- data/vendor/node_modules/resolve/index.js +8 -0
- data/vendor/node_modules/resolve/lib/async.js +203 -0
- data/vendor/node_modules/resolve/lib/caller.js +8 -0
- data/vendor/node_modules/resolve/lib/core.js +53 -0
- data/vendor/node_modules/resolve/lib/core.json +69 -0
- data/vendor/node_modules/resolve/lib/node-modules-paths.js +45 -0
- data/vendor/node_modules/resolve/lib/sync.js +93 -0
- data/vendor/node_modules/resolve/package.json +40 -0
- data/vendor/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.cjs.js +804 -0
- data/vendor/node_modules/rollup-plugin-commonjs/dist/rollup-plugin-commonjs.es.js +800 -0
- data/vendor/node_modules/rollup-plugin-commonjs/package.json +52 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/ast-utils.js +104 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/defaultResolver.js +39 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/helpers.js +19 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/index.js +198 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/transform.js +431 -0
- data/vendor/node_modules/rollup-plugin-commonjs/src/utils.js +13 -0
- data/vendor/node_modules/rollup-plugin-node-resolve/dist/rollup-plugin-node-resolve.cjs.js +218 -0
- data/vendor/node_modules/rollup-plugin-node-resolve/dist/rollup-plugin-node-resolve.es.js +214 -0
- data/vendor/node_modules/rollup-plugin-node-resolve/package.json +51 -0
- data/vendor/node_modules/rollup-plugin-node-resolve/src/empty.js +1 -0
- data/vendor/node_modules/rollup-plugin-node-resolve/src/index.js +205 -0
- data/vendor/node_modules/rollup-pluginutils/dist/pluginutils.cjs.js +223 -0
- data/vendor/node_modules/rollup-pluginutils/dist/pluginutils.es.js +214 -0
- data/vendor/node_modules/rollup-pluginutils/dist/pluginutils.es6.js +217 -0
- data/vendor/node_modules/rollup-pluginutils/node_modules/estree-walker/dist/estree-walker.es.js +55 -0
- data/vendor/node_modules/rollup-pluginutils/node_modules/estree-walker/dist/estree-walker.es6.js +59 -0
- data/vendor/node_modules/rollup-pluginutils/node_modules/estree-walker/dist/estree-walker.umd.js +65 -0
- data/vendor/node_modules/rollup-pluginutils/node_modules/estree-walker/package.json +33 -0
- data/vendor/node_modules/rollup-pluginutils/node_modules/estree-walker/src/estree-walker.js +49 -0
- data/vendor/node_modules/rollup-pluginutils/package.json +40 -0
- data/vendor/node_modules/rollup-pluginutils/src/addExtension.js +6 -0
- data/vendor/node_modules/rollup-pluginutils/src/attachScopes.js +147 -0
- data/vendor/node_modules/rollup-pluginutils/src/createFilter.js +33 -0
- data/vendor/node_modules/rollup-pluginutils/src/index.js +4 -0
- data/vendor/node_modules/rollup-pluginutils/src/makeLegalIdentifier.js +15 -0
- data/vendor/node_modules/rollup-pluginutils/src/utils/ensureArray.js +5 -0
- data/vendor/node_modules/rollup/bin/rollup +4085 -0
- data/vendor/node_modules/rollup/dist/rollup.browser.js +19829 -0
- data/vendor/node_modules/rollup/dist/rollup.es.js +23586 -0
- data/vendor/node_modules/rollup/dist/rollup.js +23597 -0
- data/vendor/node_modules/rollup/dist/typings/Chunk.d.ts +85 -0
- data/vendor/node_modules/rollup/dist/typings/ExternalModule.d.ts +30 -0
- data/vendor/node_modules/rollup/dist/typings/Graph.d.ts +47 -0
- data/vendor/node_modules/rollup/dist/typings/Module.d.ts +130 -0
- data/vendor/node_modules/rollup/dist/typings/ast/CallOptions.d.ts +20 -0
- data/vendor/node_modules/rollup/dist/typings/ast/Entity.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/ExecutionPathOptions.d.ts +57 -0
- data/vendor/node_modules/rollup/dist/typings/ast/clone.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/ast/enhance.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/ast/keys.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ArrayExpression.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ArrayPattern.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ArrowFunctionExpression.d.ts +25 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/AssignmentExpression.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/AssignmentPattern.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/AssignmentProperty.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/AwaitExpression.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/BinaryExpression.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/BlockStatement.d.ts +19 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/BreakStatement.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/CallExpression.d.ts +22 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/CatchClause.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ClassBody.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ClassDeclaration.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ClassExpression.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ConditionalExpression.d.ts +28 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/DoWhileStatement.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/EmptyStatement.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ExportAllDeclaration.d.ts +12 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ExportDefaultDeclaration.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ExportNamedDeclaration.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ExportSpecifier.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ExpressionStatement.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ForInStatement.d.ts +20 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ForOfStatement.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ForStatement.d.ts +19 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/FunctionDeclaration.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/FunctionExpression.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/Identifier.d.ts +29 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/IfStatement.d.ts +17 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/Import.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ImportDeclaration.d.ts +17 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ImportDefaultSpecifier.d.ts +7 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ImportNamespaceSpecifier.d.ts +7 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ImportSpecifier.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/LabeledStatement.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/Literal.d.ts +22 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/LogicalExpression.d.ts +23 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/MemberExpression.d.ts +34 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/MethodDefinition.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/NewExpression.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/NodeType.d.ts +64 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ObjectExpression.d.ts +22 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ObjectPattern.d.ts +15 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/Program.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/Property.d.ts +30 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/RestElement.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ReturnStatement.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/SequenceExpression.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/SpreadElement.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/SwitchCase.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/SwitchStatement.d.ts +12 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/TaggedTemplateExpression.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/TemplateElement.d.ts +12 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/TemplateLiteral.d.ts +12 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ThisExpression.d.ts +17 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/ThrowStatement.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/UnaryExpression.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/UnknownNode.d.ts +5 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/UpdateExpression.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/VariableDeclaration.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/VariableDeclarator.d.ts +13 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/WhileStatement.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/YieldExpression.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/index.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/ClassNode.d.ts +17 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/Expression.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts +25 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/Node.d.ts +133 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/Pattern.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/ast/nodes/shared/pureFunctions.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/BlockScope.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/CatchScope.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/FunctionScope.d.ts +20 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/GlobalScope.d.ts +7 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/ModuleScope.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/ParameterScope.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/ReturnValueScope.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/ast/scopes/Scope.d.ts +42 -0
- data/vendor/node_modules/rollup/dist/typings/ast/utils/extractNames.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/ast/values.d.ts +31 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ArgumentsVariable.d.ts +15 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ExportDefaultVariable.d.ts +16 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ExternalVariable.d.ts +12 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/GlobalVariable.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/LocalVariable.d.ts +21 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/NamespaceVariable.d.ts +20 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ParameterVariable.d.ts +5 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ReplaceableInitializationVariable.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/ThisVariable.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/Variable.d.ts +43 -0
- data/vendor/node_modules/rollup/dist/typings/ast/variables/VariableReassignmentTracker.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/amd.d.ts +11 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/cjs.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/es.d.ts +9 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/iife.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/index.d.ts +15 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/esModuleExport.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/getExportBlock.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/getGlobalNameMaker.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/getInteropBlock.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/sanitize.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/setupNamespace.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/trimEmptyImports.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/shared/warnOnBuiltins.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/system.d.ts +8 -0
- data/vendor/node_modules/rollup/dist/typings/finalisers/umd.d.ts +10 -0
- data/vendor/node_modules/rollup/dist/typings/node-entry.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/rollup/index.d.ts +167 -0
- data/vendor/node_modules/rollup/dist/typings/utils/callIfFunction.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/collapseSourcemaps.d.ts +5 -0
- data/vendor/node_modules/rollup/dist/typings/utils/commondir.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/defaults.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/utils/deprecateOptions.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/utils/ensureArray.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/utils/entryHashing.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/utils/error.d.ts +18 -0
- data/vendor/node_modules/rollup/dist/typings/utils/first-sync.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/first.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/flushTime.d.ts +5 -0
- data/vendor/node_modules/rollup/dist/typings/utils/fs.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/utils/getCodeFrame.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/getExportMode.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/utils/getIndentString.d.ts +4 -0
- data/vendor/node_modules/rollup/dist/typings/utils/identifierHelpers.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/utils/mergeOptions.d.ts +19 -0
- data/vendor/node_modules/rollup/dist/typings/utils/object.d.ts +7 -0
- data/vendor/node_modules/rollup/dist/typings/utils/path.d.ts +6 -0
- data/vendor/node_modules/rollup/dist/typings/utils/promise.d.ts +2 -0
- data/vendor/node_modules/rollup/dist/typings/utils/relativeId.d.ts +1 -0
- data/vendor/node_modules/rollup/dist/typings/utils/renderHelpers.d.ts +26 -0
- data/vendor/node_modules/rollup/dist/typings/utils/sourceMappingURL.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/utils/timers.d.ts +7 -0
- data/vendor/node_modules/rollup/dist/typings/utils/transform.d.ts +25 -0
- data/vendor/node_modules/rollup/dist/typings/utils/transformBundle.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/watch/chokidar.d.ts +3 -0
- data/vendor/node_modules/rollup/dist/typings/watch/fileWatchers.d.ts +14 -0
- data/vendor/node_modules/rollup/dist/typings/watch/index.d.ts +47 -0
- data/vendor/node_modules/rollup/package.json +122 -0
- data/vendor/node_modules/rollup/typings/package.json.d.ts +3 -0
- data/vendor/node_modules/signal-exit/index.js +157 -0
- data/vendor/node_modules/signal-exit/package.json +38 -0
- data/vendor/node_modules/signal-exit/signals.js +53 -0
- data/vendor/node_modules/source-map/dist/source-map.debug.js +3091 -0
- data/vendor/node_modules/source-map/dist/source-map.js +3090 -0
- data/vendor/node_modules/source-map/dist/source-map.min.js +2 -0
- data/vendor/node_modules/source-map/lib/array-set.js +121 -0
- data/vendor/node_modules/source-map/lib/base64-vlq.js +140 -0
- data/vendor/node_modules/source-map/lib/base64.js +67 -0
- data/vendor/node_modules/source-map/lib/binary-search.js +111 -0
- data/vendor/node_modules/source-map/lib/mapping-list.js +79 -0
- data/vendor/node_modules/source-map/lib/quick-sort.js +114 -0
- data/vendor/node_modules/source-map/lib/source-map-consumer.js +1082 -0
- data/vendor/node_modules/source-map/lib/source-map-generator.js +416 -0
- data/vendor/node_modules/source-map/lib/source-node.js +413 -0
- data/vendor/node_modules/source-map/lib/util.js +417 -0
- data/vendor/node_modules/source-map/package.json +72 -0
- data/vendor/node_modules/source-map/source-map.js +8 -0
- data/vendor/node_modules/sourcemap-codec/dist/sourcemap-codec.es.js +129 -0
- data/vendor/node_modules/sourcemap-codec/dist/sourcemap-codec.umd.js +140 -0
- data/vendor/node_modules/sourcemap-codec/dist/types/sourcemap-codec.d.ts +5 -0
- data/vendor/node_modules/sourcemap-codec/package.json +52 -0
- data/vendor/node_modules/supports-color/browser.js +5 -0
- data/vendor/node_modules/supports-color/index.js +135 -0
- data/vendor/node_modules/supports-color/package.json +53 -0
- data/vendor/node_modules/time-zone/index.js +10 -0
- data/vendor/node_modules/time-zone/package.json +35 -0
- data/vendor/node_modules/vlq/dist/types/vlq.d.ts +2 -0
- data/vendor/node_modules/vlq/dist/vlq.es.js +64 -0
- data/vendor/node_modules/vlq/dist/vlq.js +75 -0
- data/vendor/node_modules/vlq/package.json +30 -0
- data/vendor/package.json +15 -0
- data/vendor/yarn.lock +453 -0
- metadata +641 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
import CallExpression from './CallExpression';
|
2
|
+
import { NodeType } from './NodeType';
|
3
|
+
import { NodeBase } from './shared/Node';
|
4
|
+
import MagicString from 'magic-string';
|
5
|
+
import NamespaceVariable from '../variables/NamespaceVariable';
|
6
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
7
|
+
export default class Import extends NodeBase {
|
8
|
+
type: NodeType.Import;
|
9
|
+
parent: CallExpression;
|
10
|
+
private resolution;
|
11
|
+
private resolutionInterop;
|
12
|
+
setResolution(resolution: NamespaceVariable | string | void, interop: boolean): void;
|
13
|
+
render(code: MagicString, options: RenderOptions): void;
|
14
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { NodeBase } from './shared/Node';
|
2
|
+
import Literal from './Literal';
|
3
|
+
import ImportSpecifier from './ImportSpecifier';
|
4
|
+
import ImportDefaultSpecifier from './ImportDefaultSpecifier';
|
5
|
+
import ImportNamespaceSpecifier from './ImportNamespaceSpecifier';
|
6
|
+
import MagicString from 'magic-string';
|
7
|
+
import { NodeType } from './NodeType';
|
8
|
+
import { NodeRenderOptions, RenderOptions } from '../../utils/renderHelpers';
|
9
|
+
export default class ImportDeclaration extends NodeBase {
|
10
|
+
type: NodeType.ImportDeclaration;
|
11
|
+
specifiers: (ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier)[];
|
12
|
+
source: Literal<string>;
|
13
|
+
isImportDeclaration: true;
|
14
|
+
needsBoundaries: true;
|
15
|
+
bindChildren(): void;
|
16
|
+
render(code: MagicString, _options: RenderOptions, {start, end}?: NodeRenderOptions): void;
|
17
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
2
|
+
import Identifier from './Identifier';
|
3
|
+
import { NodeType } from './NodeType';
|
4
|
+
import { StatementBase, StatementNode } from './shared/Node';
|
5
|
+
export default class LabeledStatement extends StatementBase {
|
6
|
+
type: NodeType.LabeledStatement;
|
7
|
+
label: Identifier;
|
8
|
+
body: StatementNode;
|
9
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
10
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
2
|
+
import MagicString from 'magic-string';
|
3
|
+
import { SomeReturnExpressionCallback } from './shared/Expression';
|
4
|
+
import { Node, NodeBase } from './shared/Node';
|
5
|
+
import { NodeType } from './NodeType';
|
6
|
+
import CallOptions from '../CallOptions';
|
7
|
+
import { ObjectPath } from '../values';
|
8
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
9
|
+
export declare type LiteralValueTypes = string | boolean | null | number | RegExp;
|
10
|
+
export declare function isLiteral(node: Node): node is Literal;
|
11
|
+
export default class Literal<T = LiteralValueTypes> extends NodeBase {
|
12
|
+
type: NodeType.Literal;
|
13
|
+
value: T;
|
14
|
+
private members;
|
15
|
+
getValue(): T;
|
16
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, _options: ExecutionPathOptions): boolean;
|
17
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, _options: ExecutionPathOptions): boolean;
|
18
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
19
|
+
initialiseNode(): void;
|
20
|
+
render(code: MagicString, _options: RenderOptions): void;
|
21
|
+
someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
|
22
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { ObjectPath } from '../values';
|
2
|
+
import CallOptions from '../CallOptions';
|
3
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
4
|
+
import { ForEachReturnExpressionCallback, PredicateFunction, SomeReturnExpressionCallback } from './shared/Expression';
|
5
|
+
import { NodeType } from './NodeType';
|
6
|
+
import { ExpressionNode, NodeBase } from './shared/Node';
|
7
|
+
export declare type LogicalOperator = '||' | '&&';
|
8
|
+
export default class LogicalExpression extends NodeBase {
|
9
|
+
type: NodeType.LogicalExpression;
|
10
|
+
operator: LogicalOperator;
|
11
|
+
left: ExpressionNode;
|
12
|
+
right: ExpressionNode;
|
13
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
14
|
+
forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
|
15
|
+
getValue(): any;
|
16
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
17
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
18
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
19
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
20
|
+
someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
|
21
|
+
_forEachRelevantBranch(callback: (node: ExpressionNode) => void): void;
|
22
|
+
_someRelevantBranch(predicateFunction: PredicateFunction): boolean;
|
23
|
+
}
|
@@ -0,0 +1,34 @@
|
|
1
|
+
import { ExpressionNode, Node, NodeBase } from './shared/Node';
|
2
|
+
import Variable from '../variables/Variable';
|
3
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
4
|
+
import CallOptions from '../CallOptions';
|
5
|
+
import MagicString from 'magic-string';
|
6
|
+
import { ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './shared/Expression';
|
7
|
+
import { NodeType } from './NodeType';
|
8
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
9
|
+
import { ObjectPath, ObjectPathKey } from '../values';
|
10
|
+
export declare function isMemberExpression(node: Node): node is MemberExpression;
|
11
|
+
export default class MemberExpression extends NodeBase {
|
12
|
+
type: NodeType.MemberExpression;
|
13
|
+
object: ExpressionNode;
|
14
|
+
property: ExpressionNode;
|
15
|
+
computed: boolean;
|
16
|
+
propertyKey: ObjectPathKey;
|
17
|
+
variable: Variable;
|
18
|
+
private isBound;
|
19
|
+
private replacement;
|
20
|
+
private arePropertyReadSideEffectsChecked;
|
21
|
+
bind(): void;
|
22
|
+
private resolveNamespaceVariables(baseVariable, path);
|
23
|
+
forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
|
24
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
25
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
26
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
27
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
28
|
+
includeInBundle(): boolean;
|
29
|
+
initialiseNode(): void;
|
30
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
31
|
+
private disallowNamespaceReassignment();
|
32
|
+
render(code: MagicString, options: RenderOptions): void;
|
33
|
+
someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
|
34
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { ExpressionNode, NodeBase } from './shared/Node';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import FunctionExpression from './FunctionExpression';
|
4
|
+
import CallOptions from '../CallOptions';
|
5
|
+
import { NodeType } from './NodeType';
|
6
|
+
import { ObjectPath } from '../values';
|
7
|
+
export default class MethodDefinition extends NodeBase {
|
8
|
+
type: NodeType.MethodDefinition;
|
9
|
+
key: ExpressionNode;
|
10
|
+
value: FunctionExpression;
|
11
|
+
kind: 'constructor' | 'method' | 'get' | 'set';
|
12
|
+
computed: boolean;
|
13
|
+
static: boolean;
|
14
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
15
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
16
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import CallOptions from '../CallOptions';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import { ExpressionNode, NodeBase } from './shared/Node';
|
4
|
+
import { NodeType } from './NodeType';
|
5
|
+
import { ObjectPath } from '../values';
|
6
|
+
export default class NewExpression extends NodeBase {
|
7
|
+
type: NodeType.NewExpression;
|
8
|
+
callee: ExpressionNode;
|
9
|
+
arguments: ExpressionNode[];
|
10
|
+
_callOptions: CallOptions;
|
11
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
12
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, _options: ExecutionPathOptions): boolean;
|
13
|
+
initialiseNode(): void;
|
14
|
+
}
|
@@ -0,0 +1,64 @@
|
|
1
|
+
export declare const enum NodeType {
|
2
|
+
ArrayExpression = "ArrayExpression",
|
3
|
+
ArrayPattern = "ArrayPattern",
|
4
|
+
ArrowFunctionExpression = "ArrowFunctionExpression",
|
5
|
+
AssignmentExpression = "AssignmentExpression",
|
6
|
+
AssignmentPattern = "AssignmentPattern",
|
7
|
+
AwaitExpression = "AwaitExpression",
|
8
|
+
BinaryExpression = "BinaryExpression",
|
9
|
+
BlockStatement = "BlockStatement",
|
10
|
+
BreakStatement = "BreakStatement",
|
11
|
+
CallExpression = "CallExpression",
|
12
|
+
CatchClause = "CatchClause",
|
13
|
+
ClassBody = "ClassBody",
|
14
|
+
ClassDeclaration = "ClassDeclaration",
|
15
|
+
ClassExpression = "ClassExpression",
|
16
|
+
ConditionalExpression = "ConditionalExpression",
|
17
|
+
DoWhileStatement = "DoWhileStatement",
|
18
|
+
EmptyStatement = "EmptyStatement",
|
19
|
+
ExportAllDeclaration = "ExportAllDeclaration",
|
20
|
+
ExportDefaultDeclaration = "ExportDefaultDeclaration",
|
21
|
+
ExportNamedDeclaration = "ExportNamedDeclaration",
|
22
|
+
ExportSpecifier = "ExportSpecifier",
|
23
|
+
ExpressionStatement = "ExpressionStatement",
|
24
|
+
ForStatement = "ForStatement",
|
25
|
+
ForInStatement = "ForInStatement",
|
26
|
+
ForOfStatement = "ForOfStatement",
|
27
|
+
FunctionDeclaration = "FunctionDeclaration",
|
28
|
+
FunctionExpression = "FunctionExpression",
|
29
|
+
Identifier = "Identifier",
|
30
|
+
IfStatement = "IfStatement",
|
31
|
+
Import = "Import",
|
32
|
+
ImportDeclaration = "ImportDeclaration",
|
33
|
+
ImportDefaultSpecifier = "ImportDefaultSpecifier",
|
34
|
+
ImportNamespaceSpecifier = "ImportNamespaceSpecifier",
|
35
|
+
ImportSpecifier = "ImportSpecifier",
|
36
|
+
LabeledStatement = "LabeledStatement",
|
37
|
+
Literal = "Literal",
|
38
|
+
LogicalExpression = "LogicalExpression",
|
39
|
+
MemberExpression = "MemberExpression",
|
40
|
+
MethodDefinition = "MethodDefinition",
|
41
|
+
NewExpression = "NewExpression",
|
42
|
+
ObjectExpression = "ObjectExpression",
|
43
|
+
ObjectPattern = "ObjectPattern",
|
44
|
+
Program = "Program",
|
45
|
+
Property = "Property",
|
46
|
+
RestElement = "RestElement",
|
47
|
+
ReturnStatement = "ReturnStatement",
|
48
|
+
SequenceExpression = "SequenceExpression",
|
49
|
+
SpreadElement = "SpreadElement",
|
50
|
+
SwitchCase = "SwitchCase",
|
51
|
+
SwitchStatement = "SwitchStatement",
|
52
|
+
TaggedTemplateExpression = "TaggedTemplateExpression",
|
53
|
+
TemplateElement = "TemplateElement",
|
54
|
+
TemplateLiteral = "TemplateLiteral",
|
55
|
+
ThisExpression = "ThisExpression",
|
56
|
+
ThrowStatement = "ThrowStatement",
|
57
|
+
TryStatement = "TryStatement",
|
58
|
+
UnaryExpression = "UnaryExpression",
|
59
|
+
UpdateExpression = "UpdateExpression",
|
60
|
+
VariableDeclarator = "VariableDeclarator",
|
61
|
+
VariableDeclaration = "VariableDeclaration",
|
62
|
+
WhileStatement = "WhileStatement",
|
63
|
+
YieldExpression = "YieldExpression",
|
64
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import Property from './Property';
|
2
|
+
import CallOptions from '../CallOptions';
|
3
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
4
|
+
import { ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './shared/Expression';
|
5
|
+
import { ObjectPath, ObjectPathKey } from '../values';
|
6
|
+
import { Node, NodeBase } from './shared/Node';
|
7
|
+
import { NodeType } from './NodeType';
|
8
|
+
export declare function isObjectExpression(node: Node): node is ObjectExpression;
|
9
|
+
export default class ObjectExpression extends NodeBase {
|
10
|
+
type: NodeType.ObjectExpression;
|
11
|
+
properties: Property[];
|
12
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
13
|
+
forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
|
14
|
+
_getPossiblePropertiesWithName(name: ObjectPathKey, kinds: ObjectPath): {
|
15
|
+
properties: Property[];
|
16
|
+
hasCertainHit: boolean;
|
17
|
+
};
|
18
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
19
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
20
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
21
|
+
someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
|
22
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import AssignmentProperty from './AssignmentProperty';
|
2
|
+
import Scope from '../scopes/Scope';
|
3
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
4
|
+
import { ExpressionEntity } from './shared/Expression';
|
5
|
+
import { PatternNode } from './shared/Pattern';
|
6
|
+
import { NodeBase } from './shared/Node';
|
7
|
+
import { NodeType } from './NodeType';
|
8
|
+
import { ObjectPath } from '../values';
|
9
|
+
export default class ObjectPattern extends NodeBase implements PatternNode {
|
10
|
+
type: NodeType.ObjectPattern;
|
11
|
+
properties: AssignmentProperty[];
|
12
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
13
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
14
|
+
initialiseAndDeclare(parentScope: Scope, kind: string, init: ExpressionEntity | null): void;
|
15
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import MagicString from 'magic-string';
|
2
|
+
import { NodeBase, StatementNode } from './shared/Node';
|
3
|
+
import { NodeType } from './NodeType';
|
4
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
5
|
+
export default class Program extends NodeBase {
|
6
|
+
type: NodeType.Program;
|
7
|
+
body: StatementNode[];
|
8
|
+
render(code: MagicString, options: RenderOptions): void;
|
9
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
import { ExpressionNode, Node, NodeBase } from './shared/Node';
|
2
|
+
import CallOptions from '../CallOptions';
|
3
|
+
import { ObjectPath } from '../values';
|
4
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
5
|
+
import Scope from '../scopes/Scope';
|
6
|
+
import MagicString from 'magic-string';
|
7
|
+
import { ExpressionEntity, ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './shared/Expression';
|
8
|
+
import { NodeType } from './NodeType';
|
9
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
10
|
+
export declare function isProperty(node: Node): node is Property;
|
11
|
+
export default class Property extends NodeBase {
|
12
|
+
type: NodeType.Property;
|
13
|
+
key: ExpressionNode;
|
14
|
+
value: ExpressionNode;
|
15
|
+
kind: 'init' | 'get' | 'set';
|
16
|
+
method: boolean;
|
17
|
+
shorthand: boolean;
|
18
|
+
computed: boolean;
|
19
|
+
private _accessorCallOptions;
|
20
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
21
|
+
forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
|
22
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
23
|
+
hasEffectsWhenAccessedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
24
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
25
|
+
hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
|
26
|
+
initialiseAndDeclare(parentScope: Scope, kind: string, _init: ExpressionEntity | null): void;
|
27
|
+
initialiseNode(_parentScope: Scope): void;
|
28
|
+
render(code: MagicString, options: RenderOptions): void;
|
29
|
+
someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
|
30
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { ObjectPath } from '../values';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import Scope from '../scopes/Scope';
|
4
|
+
import { PatternNode } from './shared/Pattern';
|
5
|
+
import { ExpressionEntity } from './shared/Expression';
|
6
|
+
import { NodeBase } from './shared/Node';
|
7
|
+
import { NodeType } from './NodeType';
|
8
|
+
export default class RestElement extends NodeBase implements PatternNode {
|
9
|
+
type: NodeType.RestElement;
|
10
|
+
argument: PatternNode;
|
11
|
+
reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
|
12
|
+
hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean;
|
13
|
+
initialiseAndDeclare(parentScope: Scope, kind: string, _init: ExpressionEntity | null): void;
|
14
|
+
}
|
@@ -0,0 +1,9 @@
|
|
1
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
2
|
+
import { NodeType } from './NodeType';
|
3
|
+
import { ExpressionNode, StatementBase } from './shared/Node';
|
4
|
+
export default class ReturnStatement extends StatementBase {
|
5
|
+
type: NodeType.ReturnStatement;
|
6
|
+
argument: ExpressionNode | null;
|
7
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
8
|
+
initialiseNode(): void;
|
9
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
2
|
+
import MagicString from 'magic-string';
|
3
|
+
import { ExpressionNode, NodeBase } from './shared/Node';
|
4
|
+
import { NodeType } from './NodeType';
|
5
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
6
|
+
export default class SequenceExpression extends NodeBase {
|
7
|
+
type: NodeType.SequenceExpression;
|
8
|
+
expressions: ExpressionNode[];
|
9
|
+
getValue(): any;
|
10
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
11
|
+
includeInBundle(): boolean;
|
12
|
+
render(code: MagicString, options: RenderOptions): void;
|
13
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { ExpressionNode, NodeBase, StatementNode } from './shared/Node';
|
2
|
+
import { NodeType } from './NodeType';
|
3
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
4
|
+
import MagicString from 'magic-string';
|
5
|
+
export default class SwitchCase extends NodeBase {
|
6
|
+
type: NodeType.SwitchCase;
|
7
|
+
test: ExpressionNode | null;
|
8
|
+
consequent: StatementNode[];
|
9
|
+
includeInBundle(): boolean;
|
10
|
+
render(code: MagicString, options: RenderOptions): void;
|
11
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import SwitchCase from './SwitchCase';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import Scope from '../scopes/Scope';
|
4
|
+
import { NodeType } from './NodeType';
|
5
|
+
import { ExpressionNode, StatementBase } from './shared/Node';
|
6
|
+
export default class SwitchStatement extends StatementBase {
|
7
|
+
type: NodeType.SwitchStatement;
|
8
|
+
discriminant: ExpressionNode;
|
9
|
+
cases: SwitchCase[];
|
10
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
11
|
+
initialiseScope(parentScope: Scope): void;
|
12
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import TemplateLiteral from './TemplateLiteral';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import { NodeType } from './NodeType';
|
4
|
+
import { ExpressionNode, NodeBase } from './shared/Node';
|
5
|
+
export default class TaggedTemplateExpression extends NodeBase {
|
6
|
+
type: NodeType.TaggedTemplateExpression;
|
7
|
+
tag: ExpressionNode;
|
8
|
+
quasi: TemplateLiteral;
|
9
|
+
private _callOptions;
|
10
|
+
bindNode(): void;
|
11
|
+
hasEffects(options: ExecutionPathOptions): boolean;
|
12
|
+
initialiseNode(): void;
|
13
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { NodeBase } from './shared/Node';
|
2
|
+
import ExecutionPathOptions from '../ExecutionPathOptions';
|
3
|
+
import { NodeType } from './NodeType';
|
4
|
+
export default class TemplateElement extends NodeBase {
|
5
|
+
type: NodeType.TemplateElement;
|
6
|
+
tail: boolean;
|
7
|
+
value: {
|
8
|
+
cooked: string;
|
9
|
+
raw: string;
|
10
|
+
};
|
11
|
+
hasEffects(_options: ExecutionPathOptions): boolean;
|
12
|
+
}
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import TemplateElement from './TemplateElement';
|
2
|
+
import MagicString from 'magic-string';
|
3
|
+
import { ExpressionNode, Node, NodeBase } from './shared/Node';
|
4
|
+
import { NodeType } from './NodeType';
|
5
|
+
import { RenderOptions } from '../../utils/renderHelpers';
|
6
|
+
export declare function isTemplateLiteral(node: Node): node is TemplateLiteral;
|
7
|
+
export default class TemplateLiteral extends NodeBase {
|
8
|
+
type: NodeType.TemplateLiteral;
|
9
|
+
quasis: TemplateElement[];
|
10
|
+
expressions: ExpressionNode[];
|
11
|
+
render(code: MagicString, options: RenderOptions): void;
|
12
|
+
}
|