impl TypeBuilder

This commit is contained in:
Tristan Guichaoua
2022-08-08 17:39:15 +02:00
parent 1ccb5c0f26
commit 4432d5063a
3 changed files with 303 additions and 12 deletions

View File

@@ -166,7 +166,10 @@ type ExclusiveRange = std::ops::Range<INT>;
/// An inclusive integer range.
type InclusiveRange = std::ops::RangeInclusive<INT>;
pub use api::{build_type::CustomType, events::VarDefInfo};
pub use api::{
build_type::{CustomType, TypeBuilder},
events::VarDefInfo,
};
pub use ast::{FnAccess, AST};
pub use engine::{Engine, OP_CONTAINS, OP_EQUALS};
pub use eval::EvalContext;