From 462ce14a78b4109143918878042b9f552083c82e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Fri, 26 Jan 2024 23:46:46 +0100 Subject: refactor: migrate extensions to virtual ops module (#22135) First pass of migrating away from `Deno.core.ensureFastOps()`. A few "tricky" ones have been left for a follow up. --- runtime/js/06_util.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'runtime/js/06_util.js') diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js index 64ec4ba9b..199f710bc 100644 --- a/runtime/js/06_util.js +++ b/runtime/js/06_util.js @@ -1,9 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { core, primordials } from "ext:core/mod.js"; -const { - op_bootstrap_log_level, -} = core.ensureFastOps(); +import { primordials } from "ext:core/mod.js"; +import { op_bootstrap_log_level } from "ext:core/ops"; const { Promise, SafeArrayIterator, -- cgit v1.2.3