neon 0.4.0

A safe abstraction layer for Node.js.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Internals needed by macros. These have to be exported for the macros to work
/// but are subject to change and should never be explicitly used.

// Used by the class macro.
pub use object::class::internal::{AllocateCallback, ConstructCallback, ConstructorCallCallback, MethodCallback};
pub use context::internal::initialize_module;

// An alias for neon_runtime so macros can refer to it.
pub mod runtime {
    pub use neon_runtime::*;
}