├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── settings.json └── tasks.json ├── .yo-rc.json ├── LICENSE ├── README.md ├── docs └── index.html ├── gulpfile.js ├── package.json └── spec ├── index.html ├── sec-arrow-function-definitions-runtime-semantics-namedevaluation-patch.html ├── sec-arrow-function-definitions-static-semantics-contains-patch.html ├── sec-async-arrow-function-definitions-static-semantics-Contains-patch.html ├── sec-async-function-definitions-PropertyDefinitionEvaluation-patch.html ├── sec-async-function-definitions-static-semantics-early-errors-patch.html ├── sec-async-generator-function-definitions-static-semantics-early-errors-patch.html ├── sec-asyncgenerator-definitions-propertydefinitionevaluation-patch.html ├── sec-class-keyword-patch.html ├── sec-createdynamicfunction-patch.html ├── sec-declarative-environment-records-patch.html ├── sec-ecmascript-function-objects-patch.html ├── sec-expression-rules-patch.html ├── sec-function-definitions-static-semantics-early-errors-patch.html ├── sec-function-environment-records-patch.html ├── sec-generator-function-definitions-runtime-semantics-propertydefinitionevaluation-patch.html ├── sec-generator-function-definitions-static-semantics-early-errors-patch.html ├── sec-getclassenvironment-patch.html ├── sec-global-environment-records-patch.html ├── sec-introduction.html ├── sec-left-hand-side-expressions-patch.html ├── sec-makemethod-patch.html ├── sec-method-definitions-runtime-semantics-propertydefinitionevaluation-patch.html ├── sec-module-semantics-static-semantics-early-errors-patch.html ├── sec-newfunctionenvironment-patch.html ├── sec-object-environment-records-patch.html ├── sec-object-initializer-runtime-semantics-propertydefinitionevaluation-patch.html ├── sec-performeval-patch.html ├── sec-runtime-semantics-classdefinitionevaluation-patch.html ├── sec-runtime-semantics-definemethod-patch.html ├── sec-scripts-static-semantics-early-errors-patch.html ├── sec-static-semantics-static-semantics-assignmenttargettype-patch.html ├── sec-static-semantics-static-semantics-contains-patch.html ├── sec-static-semantics-static-semantics-isdestructuring-patch.html ├── sec-static-semantics-static-semantics-isfunctiondefinition-patch.html ├── sec-static-semantics-static-semantics-isidentifierref-patch.html └── sec-the-environment-record-type-hierarchy-patch.html /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/docs/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/package.json -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/sec-arrow-function-definitions-runtime-semantics-namedevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-arrow-function-definitions-runtime-semantics-namedevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-arrow-function-definitions-static-semantics-contains-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-arrow-function-definitions-static-semantics-contains-patch.html -------------------------------------------------------------------------------- /spec/sec-async-arrow-function-definitions-static-semantics-Contains-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-async-arrow-function-definitions-static-semantics-Contains-patch.html -------------------------------------------------------------------------------- /spec/sec-async-function-definitions-PropertyDefinitionEvaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-async-function-definitions-PropertyDefinitionEvaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-async-function-definitions-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-async-function-definitions-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-async-generator-function-definitions-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-async-generator-function-definitions-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-asyncgenerator-definitions-propertydefinitionevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-asyncgenerator-definitions-propertydefinitionevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-class-keyword-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-class-keyword-patch.html -------------------------------------------------------------------------------- /spec/sec-createdynamicfunction-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-createdynamicfunction-patch.html -------------------------------------------------------------------------------- /spec/sec-declarative-environment-records-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-declarative-environment-records-patch.html -------------------------------------------------------------------------------- /spec/sec-ecmascript-function-objects-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-ecmascript-function-objects-patch.html -------------------------------------------------------------------------------- /spec/sec-expression-rules-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-expression-rules-patch.html -------------------------------------------------------------------------------- /spec/sec-function-definitions-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-function-definitions-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-function-environment-records-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-function-environment-records-patch.html -------------------------------------------------------------------------------- /spec/sec-generator-function-definitions-runtime-semantics-propertydefinitionevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-generator-function-definitions-runtime-semantics-propertydefinitionevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-generator-function-definitions-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-generator-function-definitions-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-getclassenvironment-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-getclassenvironment-patch.html -------------------------------------------------------------------------------- /spec/sec-global-environment-records-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-global-environment-records-patch.html -------------------------------------------------------------------------------- /spec/sec-introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-introduction.html -------------------------------------------------------------------------------- /spec/sec-left-hand-side-expressions-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-left-hand-side-expressions-patch.html -------------------------------------------------------------------------------- /spec/sec-makemethod-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-makemethod-patch.html -------------------------------------------------------------------------------- /spec/sec-method-definitions-runtime-semantics-propertydefinitionevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-method-definitions-runtime-semantics-propertydefinitionevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-module-semantics-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-module-semantics-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-newfunctionenvironment-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-newfunctionenvironment-patch.html -------------------------------------------------------------------------------- /spec/sec-object-environment-records-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-object-environment-records-patch.html -------------------------------------------------------------------------------- /spec/sec-object-initializer-runtime-semantics-propertydefinitionevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-object-initializer-runtime-semantics-propertydefinitionevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-performeval-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-performeval-patch.html -------------------------------------------------------------------------------- /spec/sec-runtime-semantics-classdefinitionevaluation-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-runtime-semantics-classdefinitionevaluation-patch.html -------------------------------------------------------------------------------- /spec/sec-runtime-semantics-definemethod-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-runtime-semantics-definemethod-patch.html -------------------------------------------------------------------------------- /spec/sec-scripts-static-semantics-early-errors-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-scripts-static-semantics-early-errors-patch.html -------------------------------------------------------------------------------- /spec/sec-static-semantics-static-semantics-assignmenttargettype-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-static-semantics-static-semantics-assignmenttargettype-patch.html -------------------------------------------------------------------------------- /spec/sec-static-semantics-static-semantics-contains-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-static-semantics-static-semantics-contains-patch.html -------------------------------------------------------------------------------- /spec/sec-static-semantics-static-semantics-isdestructuring-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-static-semantics-static-semantics-isdestructuring-patch.html -------------------------------------------------------------------------------- /spec/sec-static-semantics-static-semantics-isfunctiondefinition-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-static-semantics-static-semantics-isfunctiondefinition-patch.html -------------------------------------------------------------------------------- /spec/sec-static-semantics-static-semantics-isidentifierref-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-static-semantics-static-semantics-isidentifierref-patch.html -------------------------------------------------------------------------------- /spec/sec-the-environment-record-type-hierarchy-patch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-access-expressions/HEAD/spec/sec-the-environment-record-type-hierarchy-patch.html --------------------------------------------------------------------------------