├── .editorconfig ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── README.md ├── decorators.html ├── figure-2.uxf ├── img ├── favicon.ico ├── figure-1.png ├── figure-1.svg └── figure-2.png ├── package.json ├── scripts ├── auto-deploy.sh └── github_deploy_key.enc ├── spec.html └── workingdocs ├── ES6-super-construct=proposal.md ├── callconstructor.md └── decorators.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/README.md -------------------------------------------------------------------------------- /decorators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/decorators.html -------------------------------------------------------------------------------- /figure-2.uxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/figure-2.uxf -------------------------------------------------------------------------------- /img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/img/favicon.ico -------------------------------------------------------------------------------- /img/figure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/img/figure-1.png -------------------------------------------------------------------------------- /img/figure-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/img/figure-1.svg -------------------------------------------------------------------------------- /img/figure-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/img/figure-2.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/package.json -------------------------------------------------------------------------------- /scripts/auto-deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/scripts/auto-deploy.sh -------------------------------------------------------------------------------- /scripts/github_deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/scripts/github_deploy_key.enc -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/spec.html -------------------------------------------------------------------------------- /workingdocs/ES6-super-construct=proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/workingdocs/ES6-super-construct=proposal.md -------------------------------------------------------------------------------- /workingdocs/callconstructor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/workingdocs/callconstructor.md -------------------------------------------------------------------------------- /workingdocs/decorators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-decorators-previous/HEAD/workingdocs/decorators.html --------------------------------------------------------------------------------