summaryrefslogtreecommitdiff
path: root/core/lib.rs
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-03-14 19:17:52 -0400
committerRyan Dahl <ry@tinyclouds.org>2019-03-15 10:58:18 -0400
commit1811318097b57c136913bd95bb9e16d820cc1a1a (patch)
tree1459444a37d4ea961d1b1f1da2cd0044ed2c5ac9 /core/lib.rs
parent76c73ec61ec4271581795a2f0e3ae60072676dae (diff)
core: Behavior shouldn't be generic
We always pass around Box<[u8]>, and adding this generic is an unnecessary complication. Add deno_core_http_bench_test to test.py sharedQueue works on deno_core_http_bench
Diffstat (limited to 'core/lib.rs')
-rw-r--r--core/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/lib.rs b/core/lib.rs
index 66233ddfc..d044f60b5 100644
--- a/core/lib.rs
+++ b/core/lib.rs
@@ -8,6 +8,9 @@ mod flags;
mod isolate;
mod js_errors;
mod libdeno;
+mod shared_queue;
+#[cfg(test)]
+mod test_util;
pub use crate::flags::v8_set_flags;
pub use crate::isolate::*;