├── .babelrc ├── .gitignore ├── .travis.yml ├── .travis └── github_deploy_key.enc ├── LICENSE ├── README.md ├── data ├── ArrayExpression │ └── index.js ├── ArrayPattern │ └── index.js ├── ArrowFunctionExpression │ └── index.js ├── AssignmentExpression-exponentiation │ └── index.js ├── AssignmentExpression │ └── index.js ├── AssignmentPattern │ └── index.js ├── AwaitExpression │ └── index.js ├── BinaryExpression-exponentiation │ └── index.js ├── BinaryExpression │ └── index.js ├── BindExpression │ └── index.js ├── BlockStatement │ └── index.js ├── BooleanLiteral │ └── index.js ├── BreakStatement │ └── index.js ├── CallExpression │ └── index.js ├── CatchClause │ └── index.js ├── ClassBody │ └── index.js ├── ClassDeclaration │ └── index.js ├── ClassExpression │ └── index.js ├── ClassMethod-constructor │ └── index.js ├── ClassMethod-get │ └── index.js ├── ClassMethod-method │ └── index.js ├── ClassMethod-set │ └── index.js ├── ClassMethod │ └── index.js ├── ClassProperty │ └── index.js ├── ConditionalExpression │ └── index.js ├── ContinueStatement │ └── index.js ├── DebuggerStatement │ └── index.js ├── Decorator │ └── index.js ├── Directive │ └── index.js ├── DirectiveLiteral │ └── index.js ├── DoWhileStatement │ └── index.js ├── EmptyStatement │ └── index.js ├── ExportAllDeclaration │ └── index.js ├── ExportDefaultDeclaration │ └── index.js ├── ExportNamedDeclaration │ └── index.js ├── ExportSpecifier │ └── index.js ├── ExpressionStatement │ └── index.js ├── ForInStatement │ └── index.js ├── ForOfStatement │ └── index.js ├── ForStatement │ └── index.js ├── FunctionDeclaration-async │ └── index.js ├── FunctionDeclaration │ └── index.js ├── FunctionExpression │ └── index.js ├── Identifier │ └── index.js ├── IfStatement │ └── index.js ├── ImportDeclaration │ └── index.js ├── ImportDefaultSpecifier │ └── index.js ├── ImportNamespaceSpecifier │ └── index.js ├── ImportSpecifier │ └── index.js ├── LabeledStatement │ └── index.js ├── LogicalExpression │ └── index.js ├── MemberExpression │ └── index.js ├── MetaProperty │ └── index.js ├── NewExpression │ └── index.js ├── NullLiteral │ └── index.js ├── NumericLiteral │ └── index.js ├── ObjectExpression │ └── index.js ├── ObjectMethod-get │ └── index.js ├── ObjectMethod-method │ └── index.js ├── ObjectMethod-set │ └── index.js ├── ObjectMethod │ └── index.js ├── ObjectPattern │ └── index.js ├── ObjectProperty-shorthand │ └── index.js ├── ObjectProperty │ └── index.js ├── Program-module │ └── index.js ├── Program-script │ └── index.js ├── Program │ └── index.js ├── RegExpLiteral │ └── index.js ├── RestElement │ └── index.js ├── RestProperty │ └── index.js ├── ReturnStatement │ └── index.js ├── SequenceExpression │ └── index.js ├── SpreadElement │ └── index.js ├── SpreadProperty │ └── index.js ├── StringLiteral │ └── index.js ├── Super │ └── index.js ├── SwitchCase │ └── index.js ├── SwitchStatement │ └── index.js ├── TaggedTemplateExpression │ └── index.js ├── TemplateElement │ └── index.js ├── TemplateLiteral │ └── index.js ├── ThisExpression │ └── index.js ├── ThrowStatement │ └── index.js ├── TryStatement │ └── index.js ├── UnaryExpression │ └── index.js ├── UpdateExpression │ └── index.js ├── VariableDeclaration-const │ └── index.js ├── VariableDeclaration-let │ └── index.js ├── VariableDeclaration-var │ └── index.js ├── VariableDeclaration │ └── index.js ├── VariableDeclarator │ └── index.js ├── WhileStatement │ └── index.js ├── WithStatement │ └── index.js ├── YieldExpression │ └── index.js └── index.json ├── package.json ├── src ├── ecmascript-version-detector.js └── index.js ├── test ├── ecmascript-version-detector-test.js ├── mocha.opts └── specs │ └── AwaitExpression │ ├── actual.js │ └── expected.txt ├── tools ├── babylon-ast-to-index.js └── build-index.js └── website ├── .babelrc ├── README.md ├── package.json ├── postcss.config.js ├── public └── index.html ├── src ├── editor │ ├── editor.css │ └── editor.js ├── index.css ├── index.js ├── marker │ └── marker.js └── output │ ├── output.css │ └── output.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/.travis/github_deploy_key.enc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/README.md -------------------------------------------------------------------------------- /data/ArrayExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ArrayExpression/index.js -------------------------------------------------------------------------------- /data/ArrayPattern/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ArrayPattern/index.js -------------------------------------------------------------------------------- /data/ArrowFunctionExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ArrowFunctionExpression/index.js -------------------------------------------------------------------------------- /data/AssignmentExpression-exponentiation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/AssignmentExpression-exponentiation/index.js -------------------------------------------------------------------------------- /data/AssignmentExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/AssignmentExpression/index.js -------------------------------------------------------------------------------- /data/AssignmentPattern/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/AssignmentPattern/index.js -------------------------------------------------------------------------------- /data/AwaitExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/AwaitExpression/index.js -------------------------------------------------------------------------------- /data/BinaryExpression-exponentiation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BinaryExpression-exponentiation/index.js -------------------------------------------------------------------------------- /data/BinaryExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BinaryExpression/index.js -------------------------------------------------------------------------------- /data/BindExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BindExpression/index.js -------------------------------------------------------------------------------- /data/BlockStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BlockStatement/index.js -------------------------------------------------------------------------------- /data/BooleanLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BooleanLiteral/index.js -------------------------------------------------------------------------------- /data/BreakStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/BreakStatement/index.js -------------------------------------------------------------------------------- /data/CallExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/CallExpression/index.js -------------------------------------------------------------------------------- /data/CatchClause/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/CatchClause/index.js -------------------------------------------------------------------------------- /data/ClassBody/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassBody/index.js -------------------------------------------------------------------------------- /data/ClassDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassDeclaration/index.js -------------------------------------------------------------------------------- /data/ClassExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassExpression/index.js -------------------------------------------------------------------------------- /data/ClassMethod-constructor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassMethod-constructor/index.js -------------------------------------------------------------------------------- /data/ClassMethod-get/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassMethod-get/index.js -------------------------------------------------------------------------------- /data/ClassMethod-method/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassMethod-method/index.js -------------------------------------------------------------------------------- /data/ClassMethod-set/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassMethod-set/index.js -------------------------------------------------------------------------------- /data/ClassMethod/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassMethod/index.js -------------------------------------------------------------------------------- /data/ClassProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ClassProperty/index.js -------------------------------------------------------------------------------- /data/ConditionalExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ConditionalExpression/index.js -------------------------------------------------------------------------------- /data/ContinueStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ContinueStatement/index.js -------------------------------------------------------------------------------- /data/DebuggerStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/DebuggerStatement/index.js -------------------------------------------------------------------------------- /data/Decorator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Decorator/index.js -------------------------------------------------------------------------------- /data/Directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Directive/index.js -------------------------------------------------------------------------------- /data/DirectiveLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/DirectiveLiteral/index.js -------------------------------------------------------------------------------- /data/DoWhileStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/DoWhileStatement/index.js -------------------------------------------------------------------------------- /data/EmptyStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/EmptyStatement/index.js -------------------------------------------------------------------------------- /data/ExportAllDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ExportAllDeclaration/index.js -------------------------------------------------------------------------------- /data/ExportDefaultDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ExportDefaultDeclaration/index.js -------------------------------------------------------------------------------- /data/ExportNamedDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ExportNamedDeclaration/index.js -------------------------------------------------------------------------------- /data/ExportSpecifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ExportSpecifier/index.js -------------------------------------------------------------------------------- /data/ExpressionStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ExpressionStatement/index.js -------------------------------------------------------------------------------- /data/ForInStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ForInStatement/index.js -------------------------------------------------------------------------------- /data/ForOfStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ForOfStatement/index.js -------------------------------------------------------------------------------- /data/ForStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ForStatement/index.js -------------------------------------------------------------------------------- /data/FunctionDeclaration-async/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/FunctionDeclaration-async/index.js -------------------------------------------------------------------------------- /data/FunctionDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/FunctionDeclaration/index.js -------------------------------------------------------------------------------- /data/FunctionExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/FunctionExpression/index.js -------------------------------------------------------------------------------- /data/Identifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Identifier/index.js -------------------------------------------------------------------------------- /data/IfStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/IfStatement/index.js -------------------------------------------------------------------------------- /data/ImportDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ImportDeclaration/index.js -------------------------------------------------------------------------------- /data/ImportDefaultSpecifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ImportDefaultSpecifier/index.js -------------------------------------------------------------------------------- /data/ImportNamespaceSpecifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ImportNamespaceSpecifier/index.js -------------------------------------------------------------------------------- /data/ImportSpecifier/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ImportSpecifier/index.js -------------------------------------------------------------------------------- /data/LabeledStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/LabeledStatement/index.js -------------------------------------------------------------------------------- /data/LogicalExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/LogicalExpression/index.js -------------------------------------------------------------------------------- /data/MemberExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/MemberExpression/index.js -------------------------------------------------------------------------------- /data/MetaProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/MetaProperty/index.js -------------------------------------------------------------------------------- /data/NewExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/NewExpression/index.js -------------------------------------------------------------------------------- /data/NullLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/NullLiteral/index.js -------------------------------------------------------------------------------- /data/NumericLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/NumericLiteral/index.js -------------------------------------------------------------------------------- /data/ObjectExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectExpression/index.js -------------------------------------------------------------------------------- /data/ObjectMethod-get/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectMethod-get/index.js -------------------------------------------------------------------------------- /data/ObjectMethod-method/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectMethod-method/index.js -------------------------------------------------------------------------------- /data/ObjectMethod-set/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectMethod-set/index.js -------------------------------------------------------------------------------- /data/ObjectMethod/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectMethod/index.js -------------------------------------------------------------------------------- /data/ObjectPattern/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectPattern/index.js -------------------------------------------------------------------------------- /data/ObjectProperty-shorthand/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectProperty-shorthand/index.js -------------------------------------------------------------------------------- /data/ObjectProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ObjectProperty/index.js -------------------------------------------------------------------------------- /data/Program-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Program-module/index.js -------------------------------------------------------------------------------- /data/Program-script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Program-script/index.js -------------------------------------------------------------------------------- /data/Program/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Program/index.js -------------------------------------------------------------------------------- /data/RegExpLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/RegExpLiteral/index.js -------------------------------------------------------------------------------- /data/RestElement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/RestElement/index.js -------------------------------------------------------------------------------- /data/RestProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/RestProperty/index.js -------------------------------------------------------------------------------- /data/ReturnStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ReturnStatement/index.js -------------------------------------------------------------------------------- /data/SequenceExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/SequenceExpression/index.js -------------------------------------------------------------------------------- /data/SpreadElement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/SpreadElement/index.js -------------------------------------------------------------------------------- /data/SpreadProperty/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/SpreadProperty/index.js -------------------------------------------------------------------------------- /data/StringLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/StringLiteral/index.js -------------------------------------------------------------------------------- /data/Super/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/Super/index.js -------------------------------------------------------------------------------- /data/SwitchCase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/SwitchCase/index.js -------------------------------------------------------------------------------- /data/SwitchStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/SwitchStatement/index.js -------------------------------------------------------------------------------- /data/TaggedTemplateExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/TaggedTemplateExpression/index.js -------------------------------------------------------------------------------- /data/TemplateElement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/TemplateElement/index.js -------------------------------------------------------------------------------- /data/TemplateLiteral/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/TemplateLiteral/index.js -------------------------------------------------------------------------------- /data/ThisExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ThisExpression/index.js -------------------------------------------------------------------------------- /data/ThrowStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/ThrowStatement/index.js -------------------------------------------------------------------------------- /data/TryStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/TryStatement/index.js -------------------------------------------------------------------------------- /data/UnaryExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/UnaryExpression/index.js -------------------------------------------------------------------------------- /data/UpdateExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/UpdateExpression/index.js -------------------------------------------------------------------------------- /data/VariableDeclaration-const/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/VariableDeclaration-const/index.js -------------------------------------------------------------------------------- /data/VariableDeclaration-let/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/VariableDeclaration-let/index.js -------------------------------------------------------------------------------- /data/VariableDeclaration-var/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/VariableDeclaration-var/index.js -------------------------------------------------------------------------------- /data/VariableDeclaration/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/VariableDeclaration/index.js -------------------------------------------------------------------------------- /data/VariableDeclarator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/VariableDeclarator/index.js -------------------------------------------------------------------------------- /data/WhileStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/WhileStatement/index.js -------------------------------------------------------------------------------- /data/WithStatement/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/WithStatement/index.js -------------------------------------------------------------------------------- /data/YieldExpression/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/YieldExpression/index.js -------------------------------------------------------------------------------- /data/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/data/index.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/package.json -------------------------------------------------------------------------------- /src/ecmascript-version-detector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/src/ecmascript-version-detector.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/src/index.js -------------------------------------------------------------------------------- /test/ecmascript-version-detector-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/test/ecmascript-version-detector-test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --compilers js:babel-register -------------------------------------------------------------------------------- /test/specs/AwaitExpression/actual.js: -------------------------------------------------------------------------------- 1 | async function countUp() { 2 | await delay(1000); 3 | } -------------------------------------------------------------------------------- /test/specs/AwaitExpression/expected.txt: -------------------------------------------------------------------------------- 1 | AwaitExpression -------------------------------------------------------------------------------- /tools/babylon-ast-to-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/tools/babylon-ast-to-index.js -------------------------------------------------------------------------------- /tools/build-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/tools/build-index.js -------------------------------------------------------------------------------- /website/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/.babelrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/README.md -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/package.json -------------------------------------------------------------------------------- /website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/postcss.config.js -------------------------------------------------------------------------------- /website/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/public/index.html -------------------------------------------------------------------------------- /website/src/editor/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/editor/editor.css -------------------------------------------------------------------------------- /website/src/editor/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/editor/editor.js -------------------------------------------------------------------------------- /website/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/index.css -------------------------------------------------------------------------------- /website/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/index.js -------------------------------------------------------------------------------- /website/src/marker/marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/marker/marker.js -------------------------------------------------------------------------------- /website/src/output/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/output/output.css -------------------------------------------------------------------------------- /website/src/output/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/src/output/output.js -------------------------------------------------------------------------------- /website/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/ecmascript-version-detector/HEAD/website/webpack.config.js --------------------------------------------------------------------------------