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:
parent
04ba8df711
commit
5b96f7bf21
1 changed files with 7 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue