diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-04-21 00:20:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 00:20:33 +0200 |
commit | 8a7539cab36699465ec6e37455c54fa86f3c0cbe (patch) | |
tree | c3df15f3b673d1ec1a9c4ffada1a9274e3aca942 /cli/diagnostics.rs | |
parent | 8b258070542a81d217226fe832b26d81cf20113d (diff) |
feat(runtime): two-tier subprocess API (#11618)
Diffstat (limited to 'cli/diagnostics.rs')
-rw-r--r-- | cli/diagnostics.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cli/diagnostics.rs b/cli/diagnostics.rs index 8181c5fa0..24d7ab0e7 100644 --- a/cli/diagnostics.rs +++ b/cli/diagnostics.rs @@ -66,6 +66,12 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[ "umask", "utime", "utimeSync", + "spawnChild", + "Child", + "spawn", + "spawnSync", + "ChildStatus", + "SpawnOutput", ]; static MSG_MISSING_PROPERTY_DENO: Lazy<Regex> = Lazy::new(|| { |