├── .gitignore ├── .travis.yml ├── README.md ├── deploy.sh ├── deploy_key.enc ├── history ├── Weak References for EcmaScript.pdf ├── pre-structure.svg ├── spec.md ├── weakref-structure.svg └── weakrefs.md ├── package.json ├── reference.md └── spec ├── abstract-jobs.html ├── finalization-registry.html ├── index.html └── weak-ref.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | out/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/README.md -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/deploy.sh -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /history/Weak References for EcmaScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/history/Weak References for EcmaScript.pdf -------------------------------------------------------------------------------- /history/pre-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/history/pre-structure.svg -------------------------------------------------------------------------------- /history/spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/history/spec.md -------------------------------------------------------------------------------- /history/weakref-structure.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/history/weakref-structure.svg -------------------------------------------------------------------------------- /history/weakrefs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/history/weakrefs.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/package.json -------------------------------------------------------------------------------- /reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/reference.md -------------------------------------------------------------------------------- /spec/abstract-jobs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/spec/abstract-jobs.html -------------------------------------------------------------------------------- /spec/finalization-registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/spec/finalization-registry.html -------------------------------------------------------------------------------- /spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/spec/index.html -------------------------------------------------------------------------------- /spec/weak-ref.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-weakrefs/HEAD/spec/weak-ref.html --------------------------------------------------------------------------------