summaryrefslogtreecommitdiff
path: root/ext/fs/lib.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-24 23:38:18 +0100
committerGitHub <noreply@github.com>2024-01-24 23:38:18 +0100
commit801ed74118baabef49842bbfb2164f971d2cdb03 (patch)
tree6195aa063de73500c299382fba7cd52a5d971d21 /ext/fs/lib.rs
parent316093fec41163be3d0e31e6d61b5bc0b1341b27 (diff)
revert: Remove deprecations of file sync APIs (#22085)
- `Deno.FsFile.dataSync` -> `Deno.FsFile.syncData` - `Deno.FsFile.dataSyncSync` -> `Deno.FsFile.syncDataSync` Also marks these APIs as unstable
Diffstat (limited to 'ext/fs/lib.rs')
-rw-r--r--ext/fs/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/fs/lib.rs b/ext/fs/lib.rs
index 5cfa6e5d9..0bf5462f8 100644
--- a/ext/fs/lib.rs
+++ b/ext/fs/lib.rs
@@ -130,8 +130,12 @@ deno_core::extension!(deno_fs,
op_fs_seek_async,
op_fs_fdatasync_sync,
op_fs_fdatasync_async,
+ op_fs_fdatasync_sync_unstable,
+ op_fs_fdatasync_async_unstable,
op_fs_fsync_sync,
op_fs_fsync_async,
+ op_fs_fsync_sync_unstable,
+ op_fs_fsync_async_unstable,
op_fs_fstat_sync,
op_fs_fstat_async,
op_fs_flock_sync,