mirror of
https://github.com/denoland/deno.git
synced 2025-08-31 07:47:46 +00:00
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.
This commit is contained in:
parent
d889f99657
commit
462ce14a78
41 changed files with 93 additions and 156 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue