diff options
Diffstat (limited to 'ext/node/polyfills/internal_binding/handle_wrap.ts')
-rw-r--r-- | ext/node/polyfills/internal_binding/handle_wrap.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/node/polyfills/internal_binding/handle_wrap.ts b/ext/node/polyfills/internal_binding/handle_wrap.ts index 9b037e302..9ba495edb 100644 --- a/ext/node/polyfills/internal_binding/handle_wrap.ts +++ b/ext/node/polyfills/internal_binding/handle_wrap.ts @@ -24,11 +24,11 @@ // - https://github.com/nodejs/node/blob/master/src/handle_wrap.cc // - https://github.com/nodejs/node/blob/master/src/handle_wrap.h -import { unreachable } from "internal:deno_node/_util/asserts.ts"; +import { unreachable } from "ext:deno_node/_util/asserts.ts"; import { AsyncWrap, providerType, -} from "internal:deno_node/internal_binding/async_wrap.ts"; +} from "ext:deno_node/internal_binding/async_wrap.ts"; export class HandleWrap extends AsyncWrap { constructor(provider: providerType) { |