diff options
Diffstat (limited to 'runtime/build.rs')
-rw-r--r-- | runtime/build.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index 828bc3c53..5b02f2202 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -111,7 +111,7 @@ mod startup_snapshot { } impl deno_ffi::FfiPermissions for Permissions { - fn check( + fn check_partial( &mut self, _path: Option<&Path>, ) -> Result<(), deno_core::error::AnyError> { @@ -204,6 +204,14 @@ mod startup_snapshot { unreachable!("snapshotting!") } + fn check_write_partial( + &mut self, + _path: &Path, + _api_name: &str, + ) -> Result<(), AnyError> { + unreachable!("snapshotting!") + } + fn check_write_all(&mut self, _api_name: &str) -> Result<(), AnyError> { unreachable!("snapshotting!") } |