Expose important types
This commit is contained in:
@@ -42,6 +42,10 @@ pub enum CompileError {
|
||||
expected: Type,
|
||||
found: Type,
|
||||
},
|
||||
InvalidFormulaType {
|
||||
expected: Type,
|
||||
found: Type,
|
||||
},
|
||||
VariableNotFound(String),
|
||||
ConditionMustBeBool,
|
||||
ConditionalBranchesMustHaveSameType(Type, Type),
|
||||
|
||||
@@ -3,8 +3,8 @@ use chrono::NaiveDate;
|
||||
use formula_writer::FormulaWriter;
|
||||
pub use object::FormulaObject;
|
||||
use std::sync::Arc;
|
||||
use types::Type;
|
||||
use value::Value;
|
||||
pub use types::Type;
|
||||
pub use value::Value;
|
||||
|
||||
mod array_formula;
|
||||
mod bool_formula;
|
||||
|
||||
Reference in New Issue
Block a user