diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-26 23:46:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-26 23:46:46 +0100 |
commit | 462ce14a78b4109143918878042b9f552083c82e (patch) | |
tree | 64c65d91557159efccb40117e340e7abbb08d75d /ext/cache/01_cache.js | |
parent | d889f996577a6345d08c4ce71063be6d765fb5ec (diff) |
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.
Diffstat (limited to 'ext/cache/01_cache.js')
-rw-r--r-- | ext/cache/01_cache.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/cache/01_cache.js b/ext/cache/01_cache.js index 7d6e9e0ec..a5bcde598 100644 --- a/ext/cache/01_cache.js +++ b/ext/cache/01_cache.js @@ -1,13 +1,13 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { core, primordials } from "ext:core/mod.js"; -const { +import { primordials } from "ext:core/mod.js"; +import { op_cache_delete, op_cache_match, op_cache_put, op_cache_storage_delete, op_cache_storage_has, op_cache_storage_open, -} = core.ensureFastOps(); +} from "ext:core/ops"; const { ArrayPrototypePush, ObjectPrototypeIsPrototypeOf, |