├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── TODO.md ├── es6-transpiler.js ├── es6toes5 ├── es6toes5.js ├── jshint_globals ├── LICENSE.jshint ├── README └── vars.js ├── lib ├── error.js ├── esprima_harmony.js ├── node_inject.js ├── regjsparser.js ├── scope.js ├── stats.js └── tmpl.js ├── options.js ├── other ├── async-await.js ├── let-and-file-scope.txt ├── not-supported-by-esprima.js ├── todo.js ├── v8-bug.js ├── v8-for-in-scope-2.js └── v8-for-in-scope.js ├── package.json ├── polyfills ├── RegExp.js ├── String │ ├── _RE_methods.js │ └── fromCodePoint.js ├── lib │ ├── rangeRegenerate.js │ └── unescapeUnicode.js └── test │ ├── index.js │ ├── specs │ ├── RegExp.js │ └── unescapeUnicode.js │ └── utils.js ├── run-tests ├── run-tests.es6.js ├── run-tests.js ├── tests ├── a-out.js ├── a.js ├── browser_environment-out.js ├── browser_environment.js ├── catch-out.js ├── catch.js ├── catch2-out.js ├── catch2.js ├── comment-options-out.js ├── comment-options.js ├── const-assign-stderr ├── const-assign.js ├── duplicate-var-stderr ├── duplicate-var.js ├── early-out.js ├── early.js ├── es6-QuasiLiterals-mixin-out.js ├── es6-QuasiLiterals-mixin.js ├── es6-QuasiLiterals-out.js ├── es6-QuasiLiterals-tagged-out.js ├── es6-QuasiLiterals-tagged.js ├── es6-QuasiLiterals-tagged2-out.js ├── es6-QuasiLiterals-tagged2.js ├── es6-QuasiLiterals.js ├── es6-QuasiLiterals2-out.js ├── es6-QuasiLiterals2.js ├── es6-RegExp-uflag-negative-out.js ├── es6-RegExp-uflag-negative.js ├── es6-RegExp-uflag-out.js ├── es6-RegExp-uflag.js ├── es6-RegExp-yflag-out.js ├── es6-RegExp-yflag.js ├── es6-Unicode-cpe-out.js ├── es6-Unicode-cpe.js ├── es6-arrayComprehensions-out.js ├── es6-arrayComprehensions.js ├── es6-arrowFunctions-out.js ├── es6-arrowFunctions.js ├── es6-arrowFunctions2-out.js ├── es6-arrowFunctions2.js ├── es6-arrowFunctions3-out.js ├── es6-arrowFunctions3.js ├── es6-arrowFunctions4-out.js ├── es6-arrowFunctions4.js ├── es6-cant-void-temporary-out.js ├── es6-cant-void-temporary.js ├── es6-classes-composite-out.js ├── es6-classes-composite.js ├── es6-classes-computedProperties-out.js ├── es6-classes-computedProperties.js ├── es6-classes-expression-out.js ├── es6-classes-expression.js ├── es6-classes-get-set-out.js ├── es6-classes-get-set.js ├── es6-classes-out.js ├── es6-classes-strict-mode-out.js ├── es6-classes-strict-mode.js ├── es6-classes-super-out.js ├── es6-classes-super.js ├── es6-classes.js ├── es6-classes2-out.js ├── es6-classes2.js ├── es6-classes3-out.js ├── es6-classes3.js ├── es6-classes4-out.js ├── es6-classes4.js ├── es6-classes5-out.js ├── es6-classes5.js ├── es6-classes6-out.js ├── es6-classes6.js ├── es6-classes7-out.js ├── es6-classes7.js ├── es6-computedProperties-out.js ├── es6-computedProperties-quasi-out.js ├── es6-computedProperties-quasi.js ├── es6-computedProperties.js ├── es6-computedProperties2-out.js ├── es6-computedProperties2.js ├── es6-destructuring-and-let-out.js ├── es6-destructuring-and-let.js ├── es6-destructuring-and-rest-out.js ├── es6-destructuring-and-rest.js ├── es6-destructuring-computed-out.js ├── es6-destructuring-computed.js ├── es6-destructuring-computed2-out.js ├── es6-destructuring-computed2.js ├── es6-destructuring-computed3-out.js ├── es6-destructuring-computed3.js ├── es6-destructuring-default-out.js ├── es6-destructuring-default.js ├── es6-destructuring-empty-out.js ├── es6-destructuring-empty.js ├── es6-destructuring-linebreaks-out.js ├── es6-destructuring-linebreaks.js ├── es6-destructuring-out.js ├── es6-destructuring.js ├── es6-destructuring2-out.js ├── es6-destructuring2.js ├── es6-destructuring3-out.js ├── es6-destructuring3.js ├── es6-destructuring4-out.js ├── es6-destructuring4.js ├── es6-destructuring5-out.js ├── es6-destructuring5.js ├── es6-destructuring6-out.js ├── es6-destructuring6.js ├── es6-forOf-mixid-out.js ├── es6-forOf-mixid.js ├── es6-forOf-no-iterators-out.js ├── es6-forOf-no-iterators.js ├── es6-forOf-out.js ├── es6-forOf.js ├── es6-forOf2-out.js ├── es6-forOf2.js ├── es6-forOf3-out.js ├── es6-forOf3.js ├── es6-forbidden-destructuring-stderr ├── es6-forbidden-destructuring.js ├── es6-forbidden-function-default-stderr ├── es6-forbidden-function-default.js ├── es6-function-default-out.js ├── es6-function-default.js ├── es6-function-default2-out.js ├── es6-function-default2.js ├── es6-function-destructuring-and-default-out.js ├── es6-function-destructuring-and-default.js ├── es6-function-destructuring-out.js ├── es6-function-destructuring.js ├── es6-generatorComprehension-forOf-out.js ├── es6-generatorComprehension-forOf.js ├── es6-generatorComprehension-out.js ├── es6-generatorComprehension.js ├── es6-generatorComprehension2-out.js ├── es6-generatorComprehension2.js ├── es6-loop-closures-destructuring-out.js ├── es6-loop-closures-destructuring.js ├── es6-loop-closures-out.js ├── es6-loop-closures-yeild-out.js ├── es6-loop-closures-yeild.js ├── es6-loop-closures.js ├── es6-loop-closures2-out.js ├── es6-loop-closures2.js ├── es6-numericLiteral-out.js ├── es6-numericLiteral.js ├── es6-objectLiteral-__proto__-out.js ├── es6-objectLiteral-__proto__.js ├── es6-objectLiteral-destructuring-out.js ├── es6-objectLiteral-destructuring.js ├── es6-objectLiteral-out.js ├── es6-objectLiteral.js ├── es6-spread-array-out.js ├── es6-spread-array.js ├── es6-spread-call-out.js ├── es6-spread-call.js ├── es6-spread-new-out.js ├── es6-spread-new.js ├── es6-spread-out.js ├── es6-spread-semicolon-out.js ├── es6-spread-semicolon.js ├── es6-spread-sparse-array-out.js ├── es6-spread-sparse-array.js ├── es6-spread.js ├── es6-spread2-out.js ├── es6-spread2.js ├── es6-test1-out.js ├── es6-test1.js ├── es6-test2-out.js ├── es6-test2.js ├── es6-test3-out.js ├── es6-test3.js ├── global-name-exists-out.js ├── global-name-exists.js ├── jshint-globals-err-stderr ├── jshint-globals-err.js ├── jshint-globals-out.js ├── jshint-globals.js ├── let-already-declared-stderr ├── let-already-declared.js ├── let-loop-out.js ├── let-loop.js ├── letletlet-out.js ├── letletlet.js ├── rename-array-index-out.js ├── rename-array-index.js ├── rename-out.js ├── rename.js ├── reset-noncaptured-variables-out.js ├── reset-noncaptured-variables.js ├── use-before-definition-stderr ├── use-before-definition.js ├── used-in-same-declaration-stderr ├── used-in-same-declaration.js ├── var-inside-let-stderr ├── var-inside-let.js ├── var-let-same-scope-stderr ├── var-let-same-scope.js ├── variable-names-out.js ├── variable-names.js ├── xdollarzero-out.js └── xdollarzero.js └── transpiler ├── RegExp.js ├── arrayComprehension.js ├── classes.js ├── core.js ├── core ├── comments.js ├── is.js └── standardVars.js ├── destructuring.js ├── extensions └── classes.js ├── forOf.js ├── functions.js ├── generatorComprehension.js ├── letConst.js ├── loopClosures.js ├── numericLiteral.js ├── objectLiteral.js ├── optimiser.js ├── polyfills.js ├── quasiLiterals.js ├── spread.js ├── typesDetection.js └── unicode.js /.gitattributes: -------------------------------------------------------------------------------- 1 | es6toes5 eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/TODO.md -------------------------------------------------------------------------------- /es6-transpiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/es6-transpiler.js -------------------------------------------------------------------------------- /es6toes5: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec node --harmony "$0.js" "$@" 3 | -------------------------------------------------------------------------------- /es6toes5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/es6toes5.js -------------------------------------------------------------------------------- /jshint_globals/LICENSE.jshint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/jshint_globals/LICENSE.jshint -------------------------------------------------------------------------------- /jshint_globals/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/jshint_globals/README -------------------------------------------------------------------------------- /jshint_globals/vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/jshint_globals/vars.js -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/error.js -------------------------------------------------------------------------------- /lib/esprima_harmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/esprima_harmony.js -------------------------------------------------------------------------------- /lib/node_inject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/node_inject.js -------------------------------------------------------------------------------- /lib/regjsparser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/regjsparser.js -------------------------------------------------------------------------------- /lib/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/scope.js -------------------------------------------------------------------------------- /lib/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/stats.js -------------------------------------------------------------------------------- /lib/tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/lib/tmpl.js -------------------------------------------------------------------------------- /options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/options.js -------------------------------------------------------------------------------- /other/async-await.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/async-await.js -------------------------------------------------------------------------------- /other/let-and-file-scope.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/let-and-file-scope.txt -------------------------------------------------------------------------------- /other/not-supported-by-esprima.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/not-supported-by-esprima.js -------------------------------------------------------------------------------- /other/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/todo.js -------------------------------------------------------------------------------- /other/v8-bug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/v8-bug.js -------------------------------------------------------------------------------- /other/v8-for-in-scope-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/v8-for-in-scope-2.js -------------------------------------------------------------------------------- /other/v8-for-in-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/other/v8-for-in-scope.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/package.json -------------------------------------------------------------------------------- /polyfills/RegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/RegExp.js -------------------------------------------------------------------------------- /polyfills/String/_RE_methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/String/_RE_methods.js -------------------------------------------------------------------------------- /polyfills/String/fromCodePoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/String/fromCodePoint.js -------------------------------------------------------------------------------- /polyfills/lib/rangeRegenerate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/lib/rangeRegenerate.js -------------------------------------------------------------------------------- /polyfills/lib/unescapeUnicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/lib/unescapeUnicode.js -------------------------------------------------------------------------------- /polyfills/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/test/index.js -------------------------------------------------------------------------------- /polyfills/test/specs/RegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/test/specs/RegExp.js -------------------------------------------------------------------------------- /polyfills/test/specs/unescapeUnicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/test/specs/unescapeUnicode.js -------------------------------------------------------------------------------- /polyfills/test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/polyfills/test/utils.js -------------------------------------------------------------------------------- /run-tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec node "run-tests.js" "$@" 3 | -------------------------------------------------------------------------------- /run-tests.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/run-tests.es6.js -------------------------------------------------------------------------------- /run-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/run-tests.js -------------------------------------------------------------------------------- /tests/a-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/a-out.js -------------------------------------------------------------------------------- /tests/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/a.js -------------------------------------------------------------------------------- /tests/browser_environment-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/browser_environment-out.js -------------------------------------------------------------------------------- /tests/browser_environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/browser_environment.js -------------------------------------------------------------------------------- /tests/catch-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/catch-out.js -------------------------------------------------------------------------------- /tests/catch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/catch.js -------------------------------------------------------------------------------- /tests/catch2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/catch2-out.js -------------------------------------------------------------------------------- /tests/catch2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/catch2.js -------------------------------------------------------------------------------- /tests/comment-options-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/comment-options-out.js -------------------------------------------------------------------------------- /tests/comment-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/comment-options.js -------------------------------------------------------------------------------- /tests/const-assign-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/const-assign-stderr -------------------------------------------------------------------------------- /tests/const-assign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/const-assign.js -------------------------------------------------------------------------------- /tests/duplicate-var-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/duplicate-var-stderr -------------------------------------------------------------------------------- /tests/duplicate-var.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/duplicate-var.js -------------------------------------------------------------------------------- /tests/early-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/early-out.js -------------------------------------------------------------------------------- /tests/early.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/early.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-mixin-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-mixin-out.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-mixin.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-out.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-tagged-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-tagged-out.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-tagged.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-tagged.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-tagged2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-tagged2-out.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals-tagged2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals-tagged2.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals2-out.js -------------------------------------------------------------------------------- /tests/es6-QuasiLiterals2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-QuasiLiterals2.js -------------------------------------------------------------------------------- /tests/es6-RegExp-uflag-negative-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-uflag-negative-out.js -------------------------------------------------------------------------------- /tests/es6-RegExp-uflag-negative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-uflag-negative.js -------------------------------------------------------------------------------- /tests/es6-RegExp-uflag-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-uflag-out.js -------------------------------------------------------------------------------- /tests/es6-RegExp-uflag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-uflag.js -------------------------------------------------------------------------------- /tests/es6-RegExp-yflag-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-yflag-out.js -------------------------------------------------------------------------------- /tests/es6-RegExp-yflag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-RegExp-yflag.js -------------------------------------------------------------------------------- /tests/es6-Unicode-cpe-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-Unicode-cpe-out.js -------------------------------------------------------------------------------- /tests/es6-Unicode-cpe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-Unicode-cpe.js -------------------------------------------------------------------------------- /tests/es6-arrayComprehensions-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrayComprehensions-out.js -------------------------------------------------------------------------------- /tests/es6-arrayComprehensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrayComprehensions.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions-out.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions2-out.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions2.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions3-out.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions3.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions4-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions4-out.js -------------------------------------------------------------------------------- /tests/es6-arrowFunctions4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-arrowFunctions4.js -------------------------------------------------------------------------------- /tests/es6-cant-void-temporary-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-cant-void-temporary-out.js -------------------------------------------------------------------------------- /tests/es6-cant-void-temporary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-cant-void-temporary.js -------------------------------------------------------------------------------- /tests/es6-classes-composite-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-composite-out.js -------------------------------------------------------------------------------- /tests/es6-classes-composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-composite.js -------------------------------------------------------------------------------- /tests/es6-classes-computedProperties-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-computedProperties-out.js -------------------------------------------------------------------------------- /tests/es6-classes-computedProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-computedProperties.js -------------------------------------------------------------------------------- /tests/es6-classes-expression-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-expression-out.js -------------------------------------------------------------------------------- /tests/es6-classes-expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-expression.js -------------------------------------------------------------------------------- /tests/es6-classes-get-set-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-get-set-out.js -------------------------------------------------------------------------------- /tests/es6-classes-get-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-get-set.js -------------------------------------------------------------------------------- /tests/es6-classes-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-out.js -------------------------------------------------------------------------------- /tests/es6-classes-strict-mode-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-strict-mode-out.js -------------------------------------------------------------------------------- /tests/es6-classes-strict-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-strict-mode.js -------------------------------------------------------------------------------- /tests/es6-classes-super-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-super-out.js -------------------------------------------------------------------------------- /tests/es6-classes-super.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes-super.js -------------------------------------------------------------------------------- /tests/es6-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes.js -------------------------------------------------------------------------------- /tests/es6-classes2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes2-out.js -------------------------------------------------------------------------------- /tests/es6-classes2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes2.js -------------------------------------------------------------------------------- /tests/es6-classes3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes3-out.js -------------------------------------------------------------------------------- /tests/es6-classes3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes3.js -------------------------------------------------------------------------------- /tests/es6-classes4-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes4-out.js -------------------------------------------------------------------------------- /tests/es6-classes4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes4.js -------------------------------------------------------------------------------- /tests/es6-classes5-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes5-out.js -------------------------------------------------------------------------------- /tests/es6-classes5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes5.js -------------------------------------------------------------------------------- /tests/es6-classes6-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes6-out.js -------------------------------------------------------------------------------- /tests/es6-classes6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes6.js -------------------------------------------------------------------------------- /tests/es6-classes7-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes7-out.js -------------------------------------------------------------------------------- /tests/es6-classes7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-classes7.js -------------------------------------------------------------------------------- /tests/es6-computedProperties-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties-out.js -------------------------------------------------------------------------------- /tests/es6-computedProperties-quasi-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties-quasi-out.js -------------------------------------------------------------------------------- /tests/es6-computedProperties-quasi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties-quasi.js -------------------------------------------------------------------------------- /tests/es6-computedProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties.js -------------------------------------------------------------------------------- /tests/es6-computedProperties2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties2-out.js -------------------------------------------------------------------------------- /tests/es6-computedProperties2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-computedProperties2.js -------------------------------------------------------------------------------- /tests/es6-destructuring-and-let-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-and-let-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-and-let.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-and-let.js -------------------------------------------------------------------------------- /tests/es6-destructuring-and-rest-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-and-rest-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-and-rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-and-rest.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed2-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed2.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed3-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-computed3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-computed3.js -------------------------------------------------------------------------------- /tests/es6-destructuring-default-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-default-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-default.js -------------------------------------------------------------------------------- /tests/es6-destructuring-empty-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-empty-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-empty.js -------------------------------------------------------------------------------- /tests/es6-destructuring-linebreaks-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-linebreaks-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring-linebreaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-linebreaks.js -------------------------------------------------------------------------------- /tests/es6-destructuring-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring.js -------------------------------------------------------------------------------- /tests/es6-destructuring2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring2-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring2.js -------------------------------------------------------------------------------- /tests/es6-destructuring3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring3-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring3.js -------------------------------------------------------------------------------- /tests/es6-destructuring4-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring4-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring4.js -------------------------------------------------------------------------------- /tests/es6-destructuring5-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring5-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring5.js -------------------------------------------------------------------------------- /tests/es6-destructuring6-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring6-out.js -------------------------------------------------------------------------------- /tests/es6-destructuring6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-destructuring6.js -------------------------------------------------------------------------------- /tests/es6-forOf-mixid-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf-mixid-out.js -------------------------------------------------------------------------------- /tests/es6-forOf-mixid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf-mixid.js -------------------------------------------------------------------------------- /tests/es6-forOf-no-iterators-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf-no-iterators-out.js -------------------------------------------------------------------------------- /tests/es6-forOf-no-iterators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf-no-iterators.js -------------------------------------------------------------------------------- /tests/es6-forOf-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf-out.js -------------------------------------------------------------------------------- /tests/es6-forOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf.js -------------------------------------------------------------------------------- /tests/es6-forOf2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf2-out.js -------------------------------------------------------------------------------- /tests/es6-forOf2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf2.js -------------------------------------------------------------------------------- /tests/es6-forOf3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf3-out.js -------------------------------------------------------------------------------- /tests/es6-forOf3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forOf3.js -------------------------------------------------------------------------------- /tests/es6-forbidden-destructuring-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forbidden-destructuring-stderr -------------------------------------------------------------------------------- /tests/es6-forbidden-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forbidden-destructuring.js -------------------------------------------------------------------------------- /tests/es6-forbidden-function-default-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forbidden-function-default-stderr -------------------------------------------------------------------------------- /tests/es6-forbidden-function-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-forbidden-function-default.js -------------------------------------------------------------------------------- /tests/es6-function-default-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-default-out.js -------------------------------------------------------------------------------- /tests/es6-function-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-default.js -------------------------------------------------------------------------------- /tests/es6-function-default2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-default2-out.js -------------------------------------------------------------------------------- /tests/es6-function-default2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-default2.js -------------------------------------------------------------------------------- /tests/es6-function-destructuring-and-default-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-destructuring-and-default-out.js -------------------------------------------------------------------------------- /tests/es6-function-destructuring-and-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-destructuring-and-default.js -------------------------------------------------------------------------------- /tests/es6-function-destructuring-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-destructuring-out.js -------------------------------------------------------------------------------- /tests/es6-function-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-function-destructuring.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension-forOf-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension-forOf-out.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension-forOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension-forOf.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension-out.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension2-out.js -------------------------------------------------------------------------------- /tests/es6-generatorComprehension2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-generatorComprehension2.js -------------------------------------------------------------------------------- /tests/es6-loop-closures-destructuring-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures-destructuring-out.js -------------------------------------------------------------------------------- /tests/es6-loop-closures-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures-destructuring.js -------------------------------------------------------------------------------- /tests/es6-loop-closures-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures-out.js -------------------------------------------------------------------------------- /tests/es6-loop-closures-yeild-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures-yeild-out.js -------------------------------------------------------------------------------- /tests/es6-loop-closures-yeild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures-yeild.js -------------------------------------------------------------------------------- /tests/es6-loop-closures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures.js -------------------------------------------------------------------------------- /tests/es6-loop-closures2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures2-out.js -------------------------------------------------------------------------------- /tests/es6-loop-closures2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-loop-closures2.js -------------------------------------------------------------------------------- /tests/es6-numericLiteral-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-numericLiteral-out.js -------------------------------------------------------------------------------- /tests/es6-numericLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-numericLiteral.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral-__proto__-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral-__proto__-out.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral-__proto__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral-__proto__.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral-destructuring-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral-destructuring-out.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral-destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral-destructuring.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral-out.js -------------------------------------------------------------------------------- /tests/es6-objectLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-objectLiteral.js -------------------------------------------------------------------------------- /tests/es6-spread-array-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-array-out.js -------------------------------------------------------------------------------- /tests/es6-spread-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-array.js -------------------------------------------------------------------------------- /tests/es6-spread-call-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-call-out.js -------------------------------------------------------------------------------- /tests/es6-spread-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-call.js -------------------------------------------------------------------------------- /tests/es6-spread-new-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-new-out.js -------------------------------------------------------------------------------- /tests/es6-spread-new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-new.js -------------------------------------------------------------------------------- /tests/es6-spread-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-out.js -------------------------------------------------------------------------------- /tests/es6-spread-semicolon-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-semicolon-out.js -------------------------------------------------------------------------------- /tests/es6-spread-semicolon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-semicolon.js -------------------------------------------------------------------------------- /tests/es6-spread-sparse-array-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-sparse-array-out.js -------------------------------------------------------------------------------- /tests/es6-spread-sparse-array.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread-sparse-array.js -------------------------------------------------------------------------------- /tests/es6-spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread.js -------------------------------------------------------------------------------- /tests/es6-spread2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread2-out.js -------------------------------------------------------------------------------- /tests/es6-spread2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-spread2.js -------------------------------------------------------------------------------- /tests/es6-test1-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test1-out.js -------------------------------------------------------------------------------- /tests/es6-test1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test1.js -------------------------------------------------------------------------------- /tests/es6-test2-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test2-out.js -------------------------------------------------------------------------------- /tests/es6-test2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test2.js -------------------------------------------------------------------------------- /tests/es6-test3-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test3-out.js -------------------------------------------------------------------------------- /tests/es6-test3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/es6-test3.js -------------------------------------------------------------------------------- /tests/global-name-exists-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/global-name-exists-out.js -------------------------------------------------------------------------------- /tests/global-name-exists.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/global-name-exists.js -------------------------------------------------------------------------------- /tests/jshint-globals-err-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/jshint-globals-err-stderr -------------------------------------------------------------------------------- /tests/jshint-globals-err.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/jshint-globals-err.js -------------------------------------------------------------------------------- /tests/jshint-globals-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/jshint-globals-out.js -------------------------------------------------------------------------------- /tests/jshint-globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/jshint-globals.js -------------------------------------------------------------------------------- /tests/let-already-declared-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/let-already-declared-stderr -------------------------------------------------------------------------------- /tests/let-already-declared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/let-already-declared.js -------------------------------------------------------------------------------- /tests/let-loop-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/let-loop-out.js -------------------------------------------------------------------------------- /tests/let-loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/let-loop.js -------------------------------------------------------------------------------- /tests/letletlet-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/letletlet-out.js -------------------------------------------------------------------------------- /tests/letletlet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/letletlet.js -------------------------------------------------------------------------------- /tests/rename-array-index-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/rename-array-index-out.js -------------------------------------------------------------------------------- /tests/rename-array-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/rename-array-index.js -------------------------------------------------------------------------------- /tests/rename-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/rename-out.js -------------------------------------------------------------------------------- /tests/rename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/rename.js -------------------------------------------------------------------------------- /tests/reset-noncaptured-variables-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/reset-noncaptured-variables-out.js -------------------------------------------------------------------------------- /tests/reset-noncaptured-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/reset-noncaptured-variables.js -------------------------------------------------------------------------------- /tests/use-before-definition-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/use-before-definition-stderr -------------------------------------------------------------------------------- /tests/use-before-definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/use-before-definition.js -------------------------------------------------------------------------------- /tests/used-in-same-declaration-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/used-in-same-declaration-stderr -------------------------------------------------------------------------------- /tests/used-in-same-declaration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/used-in-same-declaration.js -------------------------------------------------------------------------------- /tests/var-inside-let-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/var-inside-let-stderr -------------------------------------------------------------------------------- /tests/var-inside-let.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/var-inside-let.js -------------------------------------------------------------------------------- /tests/var-let-same-scope-stderr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/var-let-same-scope-stderr -------------------------------------------------------------------------------- /tests/var-let-same-scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/var-let-same-scope.js -------------------------------------------------------------------------------- /tests/variable-names-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/variable-names-out.js -------------------------------------------------------------------------------- /tests/variable-names.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/variable-names.js -------------------------------------------------------------------------------- /tests/xdollarzero-out.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/xdollarzero-out.js -------------------------------------------------------------------------------- /tests/xdollarzero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/tests/xdollarzero.js -------------------------------------------------------------------------------- /transpiler/RegExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/RegExp.js -------------------------------------------------------------------------------- /transpiler/arrayComprehension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/arrayComprehension.js -------------------------------------------------------------------------------- /transpiler/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/classes.js -------------------------------------------------------------------------------- /transpiler/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/core.js -------------------------------------------------------------------------------- /transpiler/core/comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/core/comments.js -------------------------------------------------------------------------------- /transpiler/core/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/core/is.js -------------------------------------------------------------------------------- /transpiler/core/standardVars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/core/standardVars.js -------------------------------------------------------------------------------- /transpiler/destructuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/destructuring.js -------------------------------------------------------------------------------- /transpiler/extensions/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/extensions/classes.js -------------------------------------------------------------------------------- /transpiler/forOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/forOf.js -------------------------------------------------------------------------------- /transpiler/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/functions.js -------------------------------------------------------------------------------- /transpiler/generatorComprehension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/generatorComprehension.js -------------------------------------------------------------------------------- /transpiler/letConst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/letConst.js -------------------------------------------------------------------------------- /transpiler/loopClosures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/loopClosures.js -------------------------------------------------------------------------------- /transpiler/numericLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/numericLiteral.js -------------------------------------------------------------------------------- /transpiler/objectLiteral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/objectLiteral.js -------------------------------------------------------------------------------- /transpiler/optimiser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/optimiser.js -------------------------------------------------------------------------------- /transpiler/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/polyfills.js -------------------------------------------------------------------------------- /transpiler/quasiLiterals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/quasiLiterals.js -------------------------------------------------------------------------------- /transpiler/spread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/spread.js -------------------------------------------------------------------------------- /transpiler/typesDetection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/typesDetection.js -------------------------------------------------------------------------------- /transpiler/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/termi/es6-transpiler/HEAD/transpiler/unicode.js --------------------------------------------------------------------------------