├── .github ├── issue_template.md └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── NS-Proto-Appendix.md ├── README.md ├── assets ├── bootstrap-snippets.js ├── template.html └── watercss │ ├── light.css │ ├── light.css.map │ └── light.min.css ├── cookbook ├── config.mjs ├── en.md └── fr.md ├── details.md ├── history └── with-classes.md ├── package.json ├── scripts ├── build-static-page.mjs └── watch-static-page.mjs ├── spec.html ├── spec ├── abstract-operations.html ├── data-types-and-values.html ├── expression.html ├── fundamental-objects.html ├── immutable-data-structures.html ├── lexical-grammar.html ├── miscellaneous-updates.html ├── ordinary-and-exotic-object-behaviours.html ├── overview.html ├── purely-editorial.html └── structured-data.html └── tutorial ├── config.mjs ├── en.md └── fr.md /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | out/ 3 | ecma262.html 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /NS-Proto-Appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/NS-Proto-Appendix.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/README.md -------------------------------------------------------------------------------- /assets/bootstrap-snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/assets/bootstrap-snippets.js -------------------------------------------------------------------------------- /assets/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/assets/template.html -------------------------------------------------------------------------------- /assets/watercss/light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/assets/watercss/light.css -------------------------------------------------------------------------------- /assets/watercss/light.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/assets/watercss/light.css.map -------------------------------------------------------------------------------- /assets/watercss/light.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/assets/watercss/light.min.css -------------------------------------------------------------------------------- /cookbook/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/cookbook/config.mjs -------------------------------------------------------------------------------- /cookbook/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/cookbook/en.md -------------------------------------------------------------------------------- /cookbook/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/cookbook/fr.md -------------------------------------------------------------------------------- /details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/details.md -------------------------------------------------------------------------------- /history/with-classes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/history/with-classes.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build-static-page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/scripts/build-static-page.mjs -------------------------------------------------------------------------------- /scripts/watch-static-page.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/scripts/watch-static-page.mjs -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec.html -------------------------------------------------------------------------------- /spec/abstract-operations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/abstract-operations.html -------------------------------------------------------------------------------- /spec/data-types-and-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/data-types-and-values.html -------------------------------------------------------------------------------- /spec/expression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/expression.html -------------------------------------------------------------------------------- /spec/fundamental-objects.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/fundamental-objects.html -------------------------------------------------------------------------------- /spec/immutable-data-structures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/immutable-data-structures.html -------------------------------------------------------------------------------- /spec/lexical-grammar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/lexical-grammar.html -------------------------------------------------------------------------------- /spec/miscellaneous-updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/miscellaneous-updates.html -------------------------------------------------------------------------------- /spec/ordinary-and-exotic-object-behaviours.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/ordinary-and-exotic-object-behaviours.html -------------------------------------------------------------------------------- /spec/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/overview.html -------------------------------------------------------------------------------- /spec/purely-editorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/purely-editorial.html -------------------------------------------------------------------------------- /spec/structured-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/spec/structured-data.html -------------------------------------------------------------------------------- /tutorial/config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/tutorial/config.mjs -------------------------------------------------------------------------------- /tutorial/en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/tutorial/en.md -------------------------------------------------------------------------------- /tutorial/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-record-tuple/HEAD/tutorial/fr.md --------------------------------------------------------------------------------