Remove ScopeEntry and VariableType from public.

This commit is contained in:
Stephen Chung 2020-03-25 11:24:29 +08:00
parent 180c4dee08
commit 599b81ad8a

View File

@ -63,7 +63,7 @@ pub use error::{ParseError, ParseErrorType};
pub use fn_register::{RegisterDynamicFn, RegisterFn, RegisterResultFn};
pub use parser::{Position, AST, INT};
pub use result::EvalAltResult;
pub use scope::{Scope, ScopeEntry, VariableType};
pub use scope::Scope;
#[cfg(not(feature = "no_index"))]
pub use engine::Array;