diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-05-23 09:17:00 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-23 09:17:00 +1000 |
commit | 4908d457580505d426ca06437a4f3b04731c5f24 (patch) | |
tree | 141dbadde494c2ff3d4e6164a667751a1f3c9a99 /cli/tools/test | |
parent | 8ea9370c55b01cc569289002b798886933f6a905 (diff) |
feat(ext/fs): stabilize `Deno.FsFile.unlock[Sync]()` and `Deno.FsFile.lock[Sync]()` (#23754)
Related #22230
CC @dyedgreen
Diffstat (limited to 'cli/tools/test')
-rw-r--r-- | cli/tools/test/fmt.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cli/tools/test/fmt.rs b/cli/tools/test/fmt.rs index 966b488b1..77cc3d1ad 100644 --- a/cli/tools/test/fmt.rs +++ b/cli/tools/test/fmt.rs @@ -310,10 +310,12 @@ pub const OP_DETAILS: phf::Map<&'static str, [&'static str; 2]> = phf_map! { "op_fs_events_poll" => ["get the next file system event", "breaking out of a for await loop looping over `Deno.FsEvents`"], "op_fs_fdatasync_async" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.fdatasync` or `Deno.FsFile.syncData` call"], "op_fs_file_stat_async" => ["get file metadata", "awaiting the result of a `Deno.fstat` or `Deno.FsFile.stat` call"], - "op_fs_flock_async" => ["lock a file", "awaiting the result of a `Deno.flock` or `Deno.FsFile.lock` call"], + "op_fs_flock_async_unstable" => ["lock a file", "awaiting the result of a `Deno.flock` call"], + "op_fs_flock_async" => ["lock a file", "awaiting the result of a `Deno.FsFile.lock` call"], "op_fs_fsync_async" => ["flush pending data operations for a file to disk", "awaiting the result of a `Deno.fsync` or `Deno.FsFile.sync` call"], "op_fs_ftruncate_async" => ["truncate a file", "awaiting the result of a `Deno.ftruncate` or `Deno.FsFile.truncate` call"], - "op_fs_funlock_async" => ["unlock a file", "awaiting the result of a `Deno.funlock` or `Deno.FsFile.unlock` call"], + "op_fs_funlock_async_unstable" => ["unlock a file", "awaiting the result of a `Deno.funlock` call"], + "op_fs_funlock_async" => ["unlock a file", "awaiting the result of a `Deno.FsFile.unlock` call"], "op_fs_futime_async" => ["change file timestamps", "awaiting the result of a `Deno.futime` or `Deno.FsFile.utime` call"], "op_fs_link_async" => ["create a hard link", "awaiting the result of a `Deno.link` call"], "op_fs_lstat_async" => ["get file metadata", "awaiting the result of a `Deno.lstat` call"], |