From 875ac73f1e8459ecec3d0d7b275546740bfe007e Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Mon, 12 Apr 2021 17:27:38 +0800 Subject: feat(runtime): stabilize Deno.fstat and Deno.fstatSync (#10108) This commit stabilizes Deno.fstat and Deno.fstatSync which are well known system calls and have a stable interface. --- runtime/ops/fs.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'runtime/ops') diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs index 0753ea0fb..aa3780624 100644 --- a/runtime/ops/fs.rs +++ b/runtime/ops/fs.rs @@ -338,7 +338,6 @@ fn op_fstat_sync( rid: ResourceId, _zero_copy: Option, ) -> Result { - super::check_unstable(state, "Deno.fstat"); let metadata = StdFileResource::with(state, rid, |r| match r { Ok(std_file) => std_file.metadata().map_err(AnyError::from), Err(_) => Err(type_error("cannot stat this type of resource".to_string())), @@ -351,7 +350,6 @@ async fn op_fstat_async( rid: ResourceId, _zero_copy: Option, ) -> Result { - super::check_unstable2(&state, "Deno.fstat"); let resource = state .borrow_mut() .resource_table -- cgit v1.2.3