diff options
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index 0c9c0d0d0..0f3d7fb46 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -116,6 +116,15 @@ mod not_docs { } } + impl deno_flash::FlashPermissions for Permissions { + fn check_net<T: AsRef<str>>( + &mut self, + _host: &(T, Option<u16>), + ) -> Result<(), deno_core::error::AnyError> { + unreachable!("snapshotting!") + } + } + impl deno_net::NetPermissions for Permissions { fn check_net<T: AsRef<str>>( &mut self, @@ -165,6 +174,7 @@ mod not_docs { None, ), deno_http::init(), + deno_flash::init::<Permissions>(false), // No --unstable ]; let js_runtime = JsRuntime::new(RuntimeOptions { |