├── .babelrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── package.json ├── src └── index.js ├── test-polyfill.js └── test ├── fixtures ├── arrow-this-deep-nested.js ├── arrow-this-nested.js ├── arrow-this.js ├── assign-expression-and-referenced.js ├── assign-expression-array-pattern.js ├── assign-expression.js ├── async.js ├── class-compiled.js ├── class-complex.js ├── class.js ├── complex.js ├── conditional-function.js ├── create-class.js ├── declaration.js ├── eval-deopt.js ├── eval-no-deopt.js ├── extended-class-from-known-class.js ├── extended-class-from-outer-parent.js ├── generator.js ├── iife.js ├── inner-1.js ├── inner-2.js ├── issue-25.js ├── issue-26.js ├── issue-28-minimal.js ├── jquery-3.1.1.js ├── no-block-statement.js ├── no-function-scope.js ├── no-hoist.js ├── no-module.js ├── nope.js ├── object-shorthand-func.js ├── possible-scope-hoisting.js ├── same-name-in-parent-scope.js ├── self-use-declaration.js ├── shadow-declaration.js ├── simple.js ├── this-in-async-arrow.js └── twice.js ├── index.js ├── mocha.opts └── processed ├── arrow-this-deep-nested.js ├── arrow-this-nested.js ├── arrow-this-nested.{}.js ├── arrow-this.js ├── arrow-this.{}.js ├── assign-expression-and-referenced.js ├── assign-expression-array-pattern.js ├── assign-expression.js ├── async.js ├── class-compiled.js ├── class-complex.js ├── class-complex.{}.js ├── class.js ├── class.{}.js ├── complex.js ├── conditional-function.js ├── create-class.js ├── create-class.{'presets'_['babel-preset-es2015-node5']}.js ├── create-class.{}.js ├── declaration.js ├── eval-deopt.js ├── eval-no-deopt.js ├── extended-class-from-known-class.js ├── extended-class-from-known-class.{}.js ├── extended-class-from-outer-parent.js ├── extended-class-from-outer-parent.{}.js ├── generator.js ├── iife.js ├── inner-1.js ├── inner-2.js ├── issue-25.js ├── issue-25.{'plugins'_['transform-async-to-generator']}.js ├── issue-25.{}.js ├── issue-26.js ├── issue-26.{}.js ├── issue-28-minimal.{'plugins'_['transform-regenerator']}.js ├── jquery-3.1.1.{'parserOpts'_{'sourceType'_'script'},'compact'_false}.js ├── no-block-statement.{}.js ├── no-function-scope.js ├── no-hoist.js ├── no-module.js ├── no-module.{'parserOpts'_{'sourceType'_'script'}}.js ├── nope.js ├── object-shorthand-func.js ├── object-shorthand-func.{'plugins'_['transform-es2015-destructuring']}.js ├── possible-scope-hoisting.js ├── same-name-in-parent-scope.{}.js ├── self-use-declaration.{}.js ├── shadow-declaration.js ├── simple.js ├── this-in-async-arrow.{'presets'_['latest']}.js └── twice.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.settings 2 | /node_modules 3 | /lib 4 | /.idea 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/src/index.js -------------------------------------------------------------------------------- /test-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test-polyfill.js -------------------------------------------------------------------------------- /test/fixtures/arrow-this-deep-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/arrow-this-deep-nested.js -------------------------------------------------------------------------------- /test/fixtures/arrow-this-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/arrow-this-nested.js -------------------------------------------------------------------------------- /test/fixtures/arrow-this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/arrow-this.js -------------------------------------------------------------------------------- /test/fixtures/assign-expression-and-referenced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/assign-expression-and-referenced.js -------------------------------------------------------------------------------- /test/fixtures/assign-expression-array-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/assign-expression-array-pattern.js -------------------------------------------------------------------------------- /test/fixtures/assign-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/assign-expression.js -------------------------------------------------------------------------------- /test/fixtures/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/async.js -------------------------------------------------------------------------------- /test/fixtures/class-compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/class-compiled.js -------------------------------------------------------------------------------- /test/fixtures/class-complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/class-complex.js -------------------------------------------------------------------------------- /test/fixtures/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/class.js -------------------------------------------------------------------------------- /test/fixtures/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/complex.js -------------------------------------------------------------------------------- /test/fixtures/conditional-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/conditional-function.js -------------------------------------------------------------------------------- /test/fixtures/create-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/create-class.js -------------------------------------------------------------------------------- /test/fixtures/declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/declaration.js -------------------------------------------------------------------------------- /test/fixtures/eval-deopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/eval-deopt.js -------------------------------------------------------------------------------- /test/fixtures/eval-no-deopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/eval-no-deopt.js -------------------------------------------------------------------------------- /test/fixtures/extended-class-from-known-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/extended-class-from-known-class.js -------------------------------------------------------------------------------- /test/fixtures/extended-class-from-outer-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/extended-class-from-outer-parent.js -------------------------------------------------------------------------------- /test/fixtures/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/generator.js -------------------------------------------------------------------------------- /test/fixtures/iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/iife.js -------------------------------------------------------------------------------- /test/fixtures/inner-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/inner-1.js -------------------------------------------------------------------------------- /test/fixtures/inner-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/inner-2.js -------------------------------------------------------------------------------- /test/fixtures/issue-25.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/issue-25.js -------------------------------------------------------------------------------- /test/fixtures/issue-26.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/issue-26.js -------------------------------------------------------------------------------- /test/fixtures/issue-28-minimal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/issue-28-minimal.js -------------------------------------------------------------------------------- /test/fixtures/jquery-3.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/jquery-3.1.1.js -------------------------------------------------------------------------------- /test/fixtures/no-block-statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/no-block-statement.js -------------------------------------------------------------------------------- /test/fixtures/no-function-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/no-function-scope.js -------------------------------------------------------------------------------- /test/fixtures/no-hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/no-hoist.js -------------------------------------------------------------------------------- /test/fixtures/no-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/no-module.js -------------------------------------------------------------------------------- /test/fixtures/nope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/nope.js -------------------------------------------------------------------------------- /test/fixtures/object-shorthand-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/object-shorthand-func.js -------------------------------------------------------------------------------- /test/fixtures/possible-scope-hoisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/possible-scope-hoisting.js -------------------------------------------------------------------------------- /test/fixtures/same-name-in-parent-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/same-name-in-parent-scope.js -------------------------------------------------------------------------------- /test/fixtures/self-use-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/self-use-declaration.js -------------------------------------------------------------------------------- /test/fixtures/shadow-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/shadow-declaration.js -------------------------------------------------------------------------------- /test/fixtures/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/simple.js -------------------------------------------------------------------------------- /test/fixtures/this-in-async-arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/this-in-async-arrow.js -------------------------------------------------------------------------------- /test/fixtures/twice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/fixtures/twice.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/processed/arrow-this-deep-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/arrow-this-deep-nested.js -------------------------------------------------------------------------------- /test/processed/arrow-this-nested.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/arrow-this-nested.js -------------------------------------------------------------------------------- /test/processed/arrow-this-nested.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/arrow-this-nested.{}.js -------------------------------------------------------------------------------- /test/processed/arrow-this.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/arrow-this.js -------------------------------------------------------------------------------- /test/processed/arrow-this.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/arrow-this.{}.js -------------------------------------------------------------------------------- /test/processed/assign-expression-and-referenced.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/assign-expression-and-referenced.js -------------------------------------------------------------------------------- /test/processed/assign-expression-array-pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/assign-expression-array-pattern.js -------------------------------------------------------------------------------- /test/processed/assign-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/assign-expression.js -------------------------------------------------------------------------------- /test/processed/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/async.js -------------------------------------------------------------------------------- /test/processed/class-compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/class-compiled.js -------------------------------------------------------------------------------- /test/processed/class-complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/class-complex.js -------------------------------------------------------------------------------- /test/processed/class-complex.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/class-complex.{}.js -------------------------------------------------------------------------------- /test/processed/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/class.js -------------------------------------------------------------------------------- /test/processed/class.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/class.{}.js -------------------------------------------------------------------------------- /test/processed/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/complex.js -------------------------------------------------------------------------------- /test/processed/conditional-function.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/conditional-function.js -------------------------------------------------------------------------------- /test/processed/create-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/create-class.js -------------------------------------------------------------------------------- /test/processed/create-class.{'presets'_['babel-preset-es2015-node5']}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/create-class.{'presets'_['babel-preset-es2015-node5']}.js -------------------------------------------------------------------------------- /test/processed/create-class.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/create-class.{}.js -------------------------------------------------------------------------------- /test/processed/declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/declaration.js -------------------------------------------------------------------------------- /test/processed/eval-deopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/eval-deopt.js -------------------------------------------------------------------------------- /test/processed/eval-no-deopt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/eval-no-deopt.js -------------------------------------------------------------------------------- /test/processed/extended-class-from-known-class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/extended-class-from-known-class.js -------------------------------------------------------------------------------- /test/processed/extended-class-from-known-class.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/extended-class-from-known-class.{}.js -------------------------------------------------------------------------------- /test/processed/extended-class-from-outer-parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/extended-class-from-outer-parent.js -------------------------------------------------------------------------------- /test/processed/extended-class-from-outer-parent.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/extended-class-from-outer-parent.{}.js -------------------------------------------------------------------------------- /test/processed/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/generator.js -------------------------------------------------------------------------------- /test/processed/iife.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/iife.js -------------------------------------------------------------------------------- /test/processed/inner-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/inner-1.js -------------------------------------------------------------------------------- /test/processed/inner-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/inner-2.js -------------------------------------------------------------------------------- /test/processed/issue-25.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-25.js -------------------------------------------------------------------------------- /test/processed/issue-25.{'plugins'_['transform-async-to-generator']}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-25.{'plugins'_['transform-async-to-generator']}.js -------------------------------------------------------------------------------- /test/processed/issue-25.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-25.{}.js -------------------------------------------------------------------------------- /test/processed/issue-26.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-26.js -------------------------------------------------------------------------------- /test/processed/issue-26.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-26.{}.js -------------------------------------------------------------------------------- /test/processed/issue-28-minimal.{'plugins'_['transform-regenerator']}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/issue-28-minimal.{'plugins'_['transform-regenerator']}.js -------------------------------------------------------------------------------- /test/processed/jquery-3.1.1.{'parserOpts'_{'sourceType'_'script'},'compact'_false}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/jquery-3.1.1.{'parserOpts'_{'sourceType'_'script'},'compact'_false}.js -------------------------------------------------------------------------------- /test/processed/no-block-statement.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/no-block-statement.{}.js -------------------------------------------------------------------------------- /test/processed/no-function-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/no-function-scope.js -------------------------------------------------------------------------------- /test/processed/no-hoist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/no-hoist.js -------------------------------------------------------------------------------- /test/processed/no-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/no-module.js -------------------------------------------------------------------------------- /test/processed/no-module.{'parserOpts'_{'sourceType'_'script'}}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/no-module.{'parserOpts'_{'sourceType'_'script'}}.js -------------------------------------------------------------------------------- /test/processed/nope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/nope.js -------------------------------------------------------------------------------- /test/processed/object-shorthand-func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/object-shorthand-func.js -------------------------------------------------------------------------------- /test/processed/object-shorthand-func.{'plugins'_['transform-es2015-destructuring']}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/object-shorthand-func.{'plugins'_['transform-es2015-destructuring']}.js -------------------------------------------------------------------------------- /test/processed/possible-scope-hoisting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/possible-scope-hoisting.js -------------------------------------------------------------------------------- /test/processed/same-name-in-parent-scope.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/same-name-in-parent-scope.{}.js -------------------------------------------------------------------------------- /test/processed/self-use-declaration.{}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/self-use-declaration.{}.js -------------------------------------------------------------------------------- /test/processed/shadow-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/shadow-declaration.js -------------------------------------------------------------------------------- /test/processed/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/simple.js -------------------------------------------------------------------------------- /test/processed/this-in-async-arrow.{'presets'_['latest']}.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/this-in-async-arrow.{'presets'_['latest']}.js -------------------------------------------------------------------------------- /test/processed/twice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemix/babel-plugin-closure-elimination/HEAD/test/processed/twice.js --------------------------------------------------------------------------------