Refactor code base and split into more module files.

This commit is contained in:
Stephen Chung
2020-05-05 12:24:13 +08:00
parent 143861747d
commit c03b162b7e
8 changed files with 186 additions and 143 deletions

View File

@@ -1,6 +1,7 @@
//! Helper module which defines the `Any` trait to to allow dynamic value handling.
use crate::engine::{Array, Map, Module};
use crate::engine::{Array, Map};
use crate::module::Module;
use crate::parser::INT;
#[cfg(not(feature = "no_float"))]