2024-01-01 19:58:21 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 18:45:53 +00:00
|
|
|
|
2023-11-13 04:52:59 +00:00
|
|
|
pub mod bootstrap;
|
2020-12-13 18:45:53 +00:00
|
|
|
pub mod fs_events;
|
2021-07-12 10:44:49 +00:00
|
|
|
pub mod http;
|
2020-12-13 18:45:53 +00:00
|
|
|
pub mod os;
|
2024-11-13 10:38:46 +00:00
|
|
|
pub mod otel;
|
2020-12-13 18:45:53 +00:00
|
|
|
pub mod permissions;
|
|
|
|
pub mod process;
|
|
|
|
pub mod runtime;
|
|
|
|
pub mod signal;
|
|
|
|
pub mod tty;
|
|
|
|
pub mod web_worker;
|
|
|
|
pub mod worker_host;
|
|
|
|
|
|
|
|
use deno_core::OpState;
|
|
|
|
|
|
|
|
/// Helper for checking unstable features. Used for sync ops.
|
2023-10-12 15:55:50 +00:00
|
|
|
pub fn check_unstable(state: &OpState, feature: &str, api_name: &str) {
|
2024-09-17 01:13:34 +00:00
|
|
|
state.feature_checker.check_or_exit(feature, api_name);
|
2020-12-13 18:45:53 +00:00
|
|
|
}
|
2021-08-16 12:29:54 +00:00
|
|
|
|
|
|
|
pub struct TestingFeaturesEnabled(pub bool);
|