diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-03-27 23:45:19 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-27 13:45:19 +0100 |
commit | 3462248571fd3193106a0427b3d8f585f9716c48 (patch) | |
tree | 265f2e3d87daac1c582cb9c211cb1f1eb3afe981 /tests/specs/future/runtime_api/main.js | |
parent | c9e10ededaea59e1108c8f2456b0cb7da0269270 (diff) |
FUTURE(ext/fs): remove `Deno.FsFile.rid` (#23087)
Continues work from #23075. Towards #23089.
Diffstat (limited to 'tests/specs/future/runtime_api/main.js')
-rw-r--r-- | tests/specs/future/runtime_api/main.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index 6a0daff22..5275ad878 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -9,6 +9,10 @@ console.log("Deno.ftruncate is", Deno.ftruncate); console.log("Deno.ftruncateSync is", Deno.ftruncateSync); console.log("Deno.flock is", Deno.flock); console.log("Deno.flockSync is", Deno.flockSync); +console.log( + "Deno.FsFile.prototype.rid is", + Deno.openSync(import.meta.filename).rid, +); console.log("Deno.funlock is", Deno.funlock); console.log("Deno.funlockSync is", Deno.funlockSync); console.log("Deno.iter is", Deno.iter); |