From ee49cce726c27cdcb372b9dba7f2deab840d9e6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Sj=C3=B6green?= Date: Wed, 15 Dec 2021 15:41:49 +0100 Subject: feat(ext/ffi): implement UnsafePointer and UnsafePointerView (#12828) --- runtime/js/90_deno_ns.js | 2 ++ 1 file changed, 2 insertions(+) (limited to 'runtime/js/90_deno_ns.js') diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index e5e52b1f6..029423ee1 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -135,6 +135,8 @@ createHttpClient: __bootstrap.fetch.createHttpClient, http: __bootstrap.http, dlopen: __bootstrap.ffi.dlopen, + UnsafePointer: __bootstrap.ffi.UnsafePointer, + UnsafePointerView: __bootstrap.ffi.UnsafePointerView, flock: __bootstrap.fs.flock, flockSync: __bootstrap.fs.flockSync, funlock: __bootstrap.fs.funlock, -- cgit v1.2.3