From 983c745d4f385594638c42c107dca7d55afd0731 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Mon, 22 Jan 2024 10:20:59 +1100 Subject: 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 --- tools/node_compat/setup.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/node_compat/setup.ts b/tools/node_compat/setup.ts index 867953ef9..2844cffdd 100755 --- a/tools/node_compat/setup.ts +++ b/tools/node_compat/setup.ts @@ -65,7 +65,7 @@ function getDenoTests() { } async function updateToDo() { - const file = await Deno.open(new URL("./TODO.md", import.meta.url), { + using file = await Deno.open(new URL("./TODO.md", import.meta.url), { write: true, create: true, truncate: true, @@ -88,7 +88,6 @@ Total: ${missingTests.length} ), ); } - file.close(); } async function clearTests() { -- cgit v1.2.3