From 5b96f7bf21392620f0047687ec3b75b25b7ea9f2 Mon Sep 17 00:00:00 2001 From: Matt Mastracci Date: Wed, 13 Dec 2023 14:52:23 -0700 Subject: [PATCH] chore(runtime): fix build (#21563) --- runtime/build.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/runtime/build.rs b/runtime/build.rs index 9975aecee8..ac20177a52 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,