summaryrefslogtreecommitdiff
path: root/runtime/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/build.rs')
-rw-r--r--runtime/build.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/build.rs b/runtime/build.rs
index d7de29883..828bc3c53 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -139,6 +139,13 @@ mod startup_snapshot {
fn check_read(&self, _p: &Path) -> Result<(), deno_core::error::AnyError> {
unreachable!("snapshotting!")
}
+ fn check_sys(
+ &self,
+ _kind: &str,
+ _api_name: &str,
+ ) -> Result<(), deno_core::error::AnyError> {
+ unreachable!("snapshotting!")
+ }
}
impl deno_net::NetPermissions for Permissions {