├── .gitignore ├── .travis.yml ├── BUILD.md ├── PRIVATE_SYNTAX_FAQ.md ├── README.md ├── deploy.sh ├── github_deploy_key.enc ├── package.json ├── spec.html └── spec ├── img ├── ecma262-compare-32.ico ├── ecma262-compare-32.png └── ecma262-compare.png ├── js └── compare.js ├── spec.html └── style ├── base.css ├── compare.css └── ecmarkup.css /.gitignore: -------------------------------------------------------------------------------- 1 | out/index.html 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/BUILD.md -------------------------------------------------------------------------------- /PRIVATE_SYNTAX_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/PRIVATE_SYNTAX_FAQ.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/deploy.sh -------------------------------------------------------------------------------- /github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/github_deploy_key.enc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/package.json -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec.html -------------------------------------------------------------------------------- /spec/img/ecma262-compare-32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/img/ecma262-compare-32.ico -------------------------------------------------------------------------------- /spec/img/ecma262-compare-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/img/ecma262-compare-32.png -------------------------------------------------------------------------------- /spec/img/ecma262-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/img/ecma262-compare.png -------------------------------------------------------------------------------- /spec/js/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/js/compare.js -------------------------------------------------------------------------------- /spec/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/spec.html -------------------------------------------------------------------------------- /spec/style/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/style/base.css -------------------------------------------------------------------------------- /spec/style/compare.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/style/compare.css -------------------------------------------------------------------------------- /spec/style/ecmarkup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-fields/HEAD/spec/style/ecmarkup.css --------------------------------------------------------------------------------