diff options
author | Matt Mastracci <matthew@mastracci.com> | 2023-12-13 14:52:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-13 21:52:23 +0000 |
commit | 5b96f7bf21392620f0047687ec3b75b25b7ea9f2 (patch) | |
tree | 4c7191faa75cf4c93779eda8df7d79d9c77b7f1d | |
parent | 04ba8df711789bcbafed089c243e377568e9a9b4 (diff) |
chore(runtime): fix build (#21563)
-rw-r--r-- | runtime/build.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index 9975aecee..ac20177a5 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -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, |