summaryrefslogtreecommitdiff
path: root/core/ops.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-01-06 20:07:35 +0100
committerGitHub <noreply@github.com>2020-01-06 20:07:35 +0100
commit8bf383710fc32efdbf2996abf5130bbd9aecacd1 (patch)
tree240927ae043a9d3596b039e5762d8d078e738d04 /core/ops.rs
parent29df272133425ed5d9c54a584c60193fb3ad6086 (diff)
refactor: remove core/libdeno.rs (#3611)
Diffstat (limited to 'core/ops.rs')
-rw-r--r--core/ops.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/ops.rs b/core/ops.rs
index 227019c02..7ed142682 100644
--- a/core/ops.rs
+++ b/core/ops.rs
@@ -1,5 +1,4 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-pub use crate::libdeno::OpId;
use crate::PinnedBuf;
use futures::Future;
use std::collections::HashMap;
@@ -7,6 +6,8 @@ use std::pin::Pin;
use std::sync::Arc;
use std::sync::RwLock;
+pub type OpId = u32;
+
pub type Buf = Box<[u8]>;
pub type OpAsyncFuture<E> =