1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

chore(runtime): fix build (#21563)

This commit is contained in:
Matt Mastracci 2023-12-13 14:52:23 -07:00 committed by GitHub
parent 04ba8df711
commit 5b96f7bf21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,6 +107,13 @@ mod startup_snapshot {
fn check_read(&self, _p: &Path) -> Result<(), deno_core::error::AnyError> {
unreachable!("snapshotting!")
}
fn check_read_with_api_name(
&self,
_: &Path,
_: std::option::Option<&str>,
) -> Result<(), deno_core::anyhow::Error> {
unreachable!("snapshotting!")
}
fn check_sys(
&self,
_kind: &str,