diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-01-22 10:20:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-22 00:20:59 +0100 |
commit | 983c745d4f385594638c42c107dca7d55afd0731 (patch) | |
tree | 2c184d26ea3344b82543117d25bb99e49ba876e9 /cli/bench | |
parent | 568337f3f43ef050cbbd95995f94e39663530ab4 (diff) |
chore: use `FsFile[Symbol.dispose]()` (#22007)
This change takes advantage of explicit resources management for
`FsFile` instances and tweaks documentation to encourage the use of it.
---------
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'cli/bench')
-rw-r--r-- | cli/bench/deno_common.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/bench/deno_common.js b/cli/bench/deno_common.js index b4319c8a3..954b0f631 100644 --- a/cli/bench/deno_common.js +++ b/cli/bench/deno_common.js @@ -39,8 +39,7 @@ Deno.bench("perf_now", { n: 5e5 }, () => { }); Deno.bench("open_file_sync", () => { - const file = Deno.openSync("./cli/bench/testdata/128k.bin"); - file.close(); + using _file = Deno.openSync("./cli/bench/testdata/128k.bin"); }); // A common "language feature", that should be fast |