mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
refactor: Remove unused code (#12210)
This commit is contained in:
parent
d0e14ae82c
commit
683a38e47c
5 changed files with 2 additions and 33 deletions
|
@ -213,7 +213,7 @@ pub fn map_content_type(
|
|||
}
|
||||
|
||||
/// Remove shebangs from the start of source code strings
|
||||
pub fn strip_shebang(mut value: String) -> String {
|
||||
fn strip_shebang(mut value: String) -> String {
|
||||
if value.starts_with("#!") {
|
||||
if let Some(mid) = value.find('\n') {
|
||||
let (_, rest) = value.split_at(mid);
|
||||
|
|
|
@ -50,12 +50,6 @@ pub struct InspectorSessionProxy {
|
|||
pub rx: SessionProxyReceiver,
|
||||
}
|
||||
|
||||
impl InspectorSessionProxy {
|
||||
pub fn split(self) -> (SessionProxySender, SessionProxyReceiver) {
|
||||
(self.tx, self.rx)
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
enum PollState {
|
||||
Idle,
|
||||
|
|
|
@ -1424,22 +1424,6 @@ impl JsRuntime {
|
|||
Ok(root_id)
|
||||
}
|
||||
|
||||
/// Asynchronously load specified module and all of its dependencies
|
||||
///
|
||||
/// User must call `JsRuntime::mod_evaluate` with returned `ModuleId`
|
||||
/// manually after load is finished.
|
||||
#[deprecated(
|
||||
since = "0.100.0",
|
||||
note = "This method had a bug, marking multiple modules loaded as \"main\". Use `load_main_module` or `load_side_module` instead."
|
||||
)]
|
||||
pub async fn load_module(
|
||||
&mut self,
|
||||
specifier: &ModuleSpecifier,
|
||||
code: Option<String>,
|
||||
) -> Result<ModuleId, AnyError> {
|
||||
self.load_main_module(specifier, code).await
|
||||
}
|
||||
|
||||
fn poll_pending_ops(
|
||||
&mut self,
|
||||
cx: &mut Context,
|
||||
|
|
|
@ -13,12 +13,3 @@ pub fn create_basic_runtime() -> tokio::runtime::Runtime {
|
|||
.build()
|
||||
.unwrap()
|
||||
}
|
||||
|
||||
// TODO(ry) rename to run_local ?
|
||||
pub fn run_basic<F, R>(future: F) -> R
|
||||
where
|
||||
F: std::future::Future<Output = R>,
|
||||
{
|
||||
let rt = create_basic_runtime();
|
||||
rt.block_on(future)
|
||||
}
|
||||
|
|
|
@ -505,7 +505,7 @@ impl WebWorker {
|
|||
}
|
||||
}
|
||||
|
||||
pub fn poll_event_loop(
|
||||
fn poll_event_loop(
|
||||
&mut self,
|
||||
cx: &mut Context,
|
||||
wait_for_inspector: bool,
|
||||
|
|
Loading…
Reference in a new issue