summaryrefslogtreecommitdiff
path: root/cli/tests/unit/ref_unref_test.ts
AgeCommit message (Collapse)Author
2023-11-09perf: remove knowledge of promise IDs from deno (#21132)Matt Mastracci
We can move all promise ID knowledge to deno_core, allowing us to better experiment with promise implementation in deno_core. `{un,}refOpPromise(promise)` is equivalent to `{un,}refOp(promise[promiseIdSymbol])`
2023-01-24refactor: remove Deno.core (#16881)Bartek IwaƄczuk
This commit removes "Deno.core" namespace. It is strictly private API that has no stability guarantees, we were supposed to remove it long time ago. Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
2023-01-13chore: add `copyright_checker` tool and add the missing copyright (#17285)Yiyu Lin
2022-03-12refactor(core): validate promise id in refOp (#13905)Yoshiya Hinosawa