1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-21 23:04:45 -05:00

Make Deno.setRaw and Deno.isatty unstable (#4925)

This commit is contained in:
Ryan Dahl 2020-04-27 10:54:55 -04:00 committed by GitHub
parent 3e9b0da346
commit dd0b25e313
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -47,10 +47,11 @@ struct SetRawArgs {
pub fn op_set_raw(
isolate: &mut CoreIsolate,
_state: &State,
state: &State,
args: Value,
_zero_copy: Option<ZeroCopyBuf>,
) -> Result<JsonOp, OpError> {
state.check_unstable("Deno.setRaw");
let args: SetRawArgs = serde_json::from_value(args)?;
let rid = args.rid;
let is_raw = args.mode;
@ -215,10 +216,11 @@ struct IsattyArgs {
pub fn op_isatty(
isolate: &mut CoreIsolate,
_state: &State,
state: &State,
args: Value,
_zero_copy: Option<ZeroCopyBuf>,
) -> Result<JsonOp, OpError> {
state.check_unstable("Deno.isatty");
let args: IsattyArgs = serde_json::from_value(args)?;
let rid = args.rid;