mirror of
https://github.com/denoland/deno.git
synced 2025-08-30 07:18:02 +00:00
fix(ext/node): add stub for AsyncResource#asyncId() (#23372)
Ref https://github.com/denoland/deno/issues/23263
This commit is contained in:
parent
1835b4f061
commit
f36a8951a4
2 changed files with 13 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
import { core } from "ext:core/mod.js";
|
||||
import { op_node_is_promise_rejected } from "ext:core/ops";
|
||||
import { validateFunction } from "ext:deno_node/internal/validators.mjs";
|
||||
import { newAsyncId } from "ext:deno_node/internal/async_hooks.ts";
|
||||
|
||||
function assert(cond: boolean) {
|
||||
if (!cond) throw new Error("Assertion failed");
|
||||
|
@ -180,9 +181,16 @@ class AsyncContextFrame {
|
|||
export class AsyncResource {
|
||||
frame: AsyncContextFrame;
|
||||
type: string;
|
||||
#asyncId: number;
|
||||
|
||||
constructor(type: string) {
|
||||
this.type = type;
|
||||
this.frame = AsyncContextFrame.current();
|
||||
this.#asyncId = newAsyncId();
|
||||
}
|
||||
|
||||
asyncId() {
|
||||
return this.#asyncId;
|
||||
}
|
||||
|
||||
runInAsyncScope(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue