Do not export fn_native.

This commit is contained in:
Stephen Chung
2020-06-18 18:39:28 +08:00
parent a3ea788fb0
commit 35fa61cd4b
4 changed files with 21 additions and 25 deletions

View File

@@ -76,7 +76,7 @@ mod engine;
mod error;
mod fn_call;
mod fn_func;
pub mod fn_native;
mod fn_native;
mod fn_register;
mod module;
mod optimize;
@@ -92,6 +92,7 @@ mod utils;
pub use any::Dynamic;
pub use engine::Engine;
pub use error::{ParseError, ParseErrorType};
pub use fn_native::IteratorFn;
pub use fn_register::{RegisterFn, RegisterResultFn};
pub use module::Module;
pub use parser::{ImmutableString, AST, INT};