diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-04-28 05:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-27 23:36:43 -0400 |
commit | 15099cc0160a6f1bc5f569c44018da6f5a186138 (patch) | |
tree | c39634d65eaa170882549306659885849d0093c8 /cli/ops/process.rs | |
parent | 22b1a302f48bc1fdea27f19cd1e5740c1ff72cbc (diff) |
Make Deno.kill unstable (#4950)
Diffstat (limited to 'cli/ops/process.rs')
-rw-r--r-- | cli/ops/process.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/ops/process.rs b/cli/ops/process.rs index 0384f5b39..125aa136b 100644 --- a/cli/ops/process.rs +++ b/cli/ops/process.rs @@ -229,6 +229,7 @@ fn op_kill( args: Value, _zero_copy: Option<ZeroCopyBuf>, ) -> Result<JsonOp, OpError> { + state.check_unstable("Deno.kill"); state.check_run()?; let args: KillArgs = serde_json::from_value(args)?; |