summaryrefslogtreecommitdiff
path: root/ext/web/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/web/lib.rs')
-rw-r--r--ext/web/lib.rs9
1 files changed, 2 insertions, 7 deletions
diff --git a/ext/web/lib.rs b/ext/web/lib.rs
index 0601aff24..332102fcc 100644
--- a/ext/web/lib.rs
+++ b/ext/web/lib.rs
@@ -2,7 +2,6 @@
mod blob;
mod compression;
-mod hr_timer_lock;
mod message_port;
mod stream_resource;
mod timers;
@@ -50,10 +49,8 @@ use crate::message_port::op_message_port_recv_message;
pub use crate::message_port::JsMessageData;
pub use crate::message_port::MessagePort;
+use crate::timers::op_defer;
use crate::timers::op_now;
-use crate::timers::op_sleep;
-use crate::timers::op_sleep_interval;
-use crate::timers::op_timer_handle;
use crate::timers::StartTime;
pub use crate::timers::TimersPermission;
@@ -85,9 +82,7 @@ deno_core::extension!(deno_web,
compression::op_compression_write,
compression::op_compression_finish,
op_now<P>,
- op_timer_handle,
- op_sleep,
- op_sleep_interval,
+ op_defer,
op_transfer_arraybuffer,
stream_resource::op_readable_stream_resource_allocate,
stream_resource::op_readable_stream_resource_allocate_sized,