diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-02-17 15:47:54 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-02-17 17:32:56 +0100 |
| commit | c5e67af22bd6242366819879be84c10c4dd135be (patch) | |
| tree | d857b99b26401d1b3b74c4cebacbf086c25bef40 /src/library/mod.rs | |
| parent | 3d965ae6a479636a13b2e2f2344e8d97bedece1f (diff) | |
Merge eval and layout contexts into `Vm`
Diffstat (limited to 'src/library/mod.rs')
| -rw-r--r-- | src/library/mod.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs index db173daf..d90c96da 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -64,16 +64,17 @@ pub mod prelude { pub use crate::diag::{At, TypResult}; pub use crate::eval::{ - Args, Construct, EvalContext, Merge, Property, Scope, Set, Show, ShowNode, Smart, - StyleChain, StyleMap, StyleVec, Template, Value, + Args, Construct, Merge, Property, Scope, Set, Show, ShowNode, Smart, StyleChain, + StyleMap, StyleVec, Template, Value, }; pub use crate::frame::*; pub use crate::geom::*; pub use crate::layout::{ - Constrain, Constrained, Constraints, Layout, LayoutContext, LayoutNode, Regions, + Constrain, Constrained, Constraints, Layout, LayoutNode, Regions, }; pub use crate::syntax::{Span, Spanned}; pub use crate::util::{EcoString, OptionExt}; + pub use crate::Vm; } use prelude::*; |
