├── .gitignore ├── .travis.yml ├── BUILD.md ├── FOLLOWONS.md ├── OLD_README.md ├── README.md ├── STATICPRIVATE.md ├── STATICPUBLIC.md ├── deploy.sh ├── github_deploy_key.enc ├── package.json └── spec.html /.gitignore: -------------------------------------------------------------------------------- 1 | out/index.html 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/.travis.yml -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/BUILD.md -------------------------------------------------------------------------------- /FOLLOWONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/FOLLOWONS.md -------------------------------------------------------------------------------- /OLD_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/OLD_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/README.md -------------------------------------------------------------------------------- /STATICPRIVATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/STATICPRIVATE.md -------------------------------------------------------------------------------- /STATICPUBLIC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/STATICPUBLIC.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/deploy.sh -------------------------------------------------------------------------------- /github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/github_deploy_key.enc -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/package.json -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-static-class-features/HEAD/spec.html --------------------------------------------------------------------------------