From c36496b3bb9a25640d209d9ac7b2c201bfdc99fb Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Wed, 9 Nov 2022 09:46:50 -0500 Subject: feat: stabilize Deno.uid() and Deno.gid() (#16424) Closes https://github.com/denoland/deno_std/issues/2791 --- runtime/ops/os/mod.rs | 4 ---- 1 file changed, 4 deletions(-) (limited to 'runtime/ops/os/mod.rs') diff --git a/runtime/ops/os/mod.rs b/runtime/ops/os/mod.rs index 1bc140d44..a46f5740a 100644 --- a/runtime/ops/os/mod.rs +++ b/runtime/ops/os/mod.rs @@ -255,7 +255,6 @@ fn op_system_memory_info( #[cfg(not(windows))] #[op] fn op_gid(state: &mut OpState) -> Result, AnyError> { - super::check_unstable(state, "Deno.gid"); state .borrow_mut::() .sys @@ -270,7 +269,6 @@ fn op_gid(state: &mut OpState) -> Result, AnyError> { #[cfg(windows)] #[op] fn op_gid(state: &mut OpState) -> Result, AnyError> { - super::check_unstable(state, "Deno.gid"); state .borrow_mut::() .sys @@ -281,7 +279,6 @@ fn op_gid(state: &mut OpState) -> Result, AnyError> { #[cfg(not(windows))] #[op] fn op_uid(state: &mut OpState) -> Result, AnyError> { - super::check_unstable(state, "Deno.uid"); state .borrow_mut::() .sys @@ -296,7 +293,6 @@ fn op_uid(state: &mut OpState) -> Result, AnyError> { #[cfg(windows)] #[op] fn op_uid(state: &mut OpState) -> Result, AnyError> { - super::check_unstable(state, "Deno.uid"); state .borrow_mut::() .sys -- cgit v1.2.3