2019-11-01 13:50:12 -04:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
2019-10-22 22:58:11 -07:00
|
|
|
#![warn(clippy::all)]
|
2019-11-15 16:21:34 -08:00
|
|
|
#![allow(clippy::missing_safety_doc)]
|
|
|
|
#![allow(clippy::new_without_default)]
|
2019-10-22 22:58:11 -07:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
2019-11-15 16:21:34 -08:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2019-11-15 12:57:34 -05:00
|
|
|
extern crate libc;
|
|
|
|
|
2019-11-18 15:02:54 -08:00
|
|
|
pub mod array_buffer;
|
2019-11-27 07:14:39 -08:00
|
|
|
pub mod handle_scope;
|
2019-10-20 16:10:40 -07:00
|
|
|
pub mod inspector;
|
2019-11-15 16:21:34 -08:00
|
|
|
pub mod isolate;
|
2019-11-30 16:31:51 +01:00
|
|
|
pub mod local;
|
2019-11-15 16:21:34 -08:00
|
|
|
pub mod locker;
|
2019-10-22 14:52:43 -07:00
|
|
|
pub mod platform;
|
2019-10-17 16:46:54 -07:00
|
|
|
pub mod string_buffer;
|
|
|
|
pub mod string_view;
|
2019-10-22 22:58:11 -07:00
|
|
|
pub mod support;
|
2019-11-30 08:47:26 -08:00
|
|
|
|
2019-12-01 09:19:22 -08:00
|
|
|
mod test_util;
|
|
|
|
|
2019-11-30 08:47:26 -08:00
|
|
|
// This module is intentionally named "V8" rather than "v8" to match the
|
|
|
|
// C++ namespace "v8::V8".
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
pub mod V8;
|
2019-11-30 16:31:51 +01:00
|
|
|
pub mod value;
|
2019-10-17 16:46:54 -07:00
|
|
|
|
2019-11-30 16:31:51 +01:00
|
|
|
pub use handle_scope::HandleScope;
|
2019-11-15 16:21:34 -08:00
|
|
|
pub use isolate::Isolate;
|
2019-11-30 16:31:51 +01:00
|
|
|
pub use local::Local;
|
2019-11-15 16:21:34 -08:00
|
|
|
pub use locker::Locker;
|
2019-10-17 16:46:54 -07:00
|
|
|
pub use string_buffer::StringBuffer;
|
|
|
|
pub use string_view::StringView;
|
2019-11-30 16:31:51 +01:00
|
|
|
pub use value::{Integer, Number};
|