diff options
Diffstat (limited to 'runtime/build.rs')
-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 a9ba09825..d45c4a2a8 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -72,6 +72,7 @@ mod not_docs { fn check_net_url( &mut self, _url: &deno_core::url::Url, + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -79,6 +80,7 @@ mod not_docs { fn check_read( &mut self, _p: &Path, + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -88,6 +90,7 @@ mod not_docs { fn check_net_url( &mut self, _url: &deno_core::url::Url, + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -120,6 +123,7 @@ mod not_docs { fn check_net<T: AsRef<str>>( &mut self, _host: &(T, Option<u16>), + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -138,6 +142,7 @@ mod not_docs { fn check_net<T: AsRef<str>>( &mut self, _host: &(T, Option<u16>), + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -145,6 +150,7 @@ mod not_docs { fn check_read( &mut self, _p: &Path, + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } @@ -152,6 +158,7 @@ mod not_docs { fn check_write( &mut self, _p: &Path, + _api_name: &str, ) -> Result<(), deno_core::error::AnyError> { unreachable!("snapshotting!") } |