diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-01-06 20:07:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-06 20:07:35 +0100 |
commit | 8bf383710fc32efdbf2996abf5130bbd9aecacd1 (patch) | |
tree | 240927ae043a9d3596b039e5762d8d078e738d04 /core/lib.rs | |
parent | 29df272133425ed5d9c54a584c60193fb3ad6086 (diff) |
refactor: remove core/libdeno.rs (#3611)
Diffstat (limited to 'core/lib.rs')
-rw-r--r-- | core/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/core/lib.rs b/core/lib.rs index 021ede9cc..8379b2b91 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -16,7 +16,6 @@ mod bindings; mod flags; mod isolate; mod js_errors; -mod libdeno; mod module_specifier; mod modules; mod ops; @@ -30,9 +29,6 @@ pub use crate::any_error::*; pub use crate::flags::v8_set_flags; pub use crate::isolate::*; pub use crate::js_errors::*; -pub use crate::libdeno::deno_mod; -pub use crate::libdeno::OpId; -pub use crate::libdeno::PinnedBuf; pub use crate::module_specifier::*; pub use crate::modules::*; pub use crate::ops::*; |