├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── docs ├── edgecase-of-priv.js ├── stage0.zh.md └── stage2.md ├── index.html ├── package.json └── spec.emu /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/README.md -------------------------------------------------------------------------------- /docs/edgecase-of-priv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/docs/edgecase-of-priv.js -------------------------------------------------------------------------------- /docs/stage0.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/docs/stage0.zh.md -------------------------------------------------------------------------------- /docs/stage2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/docs/stage2.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/package.json -------------------------------------------------------------------------------- /spec.emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-class-brand-check/HEAD/spec.emu --------------------------------------------------------------------------------