summaryrefslogtreecommitdiff
path: root/src/eval/mod.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-04-24 15:42:56 +0200
committerLaurenz <laurmaedje@gmail.com>2022-04-24 15:47:42 +0200
commit8fbb11fc05b3313bf102c1f23693290661d00863 (patch)
treea198db77338f1cc1304fe50f55020b08e22bca60 /src/eval/mod.rs
parente4ee14e54fb87961096856c7ea105435b7cc3c45 (diff)
Extract `model` module
Diffstat (limited to 'src/eval/mod.rs')
-rw-r--r--src/eval/mod.rs13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/eval/mod.rs b/src/eval/mod.rs
index f77efe47..2839baff 100644
--- a/src/eval/mod.rs
+++ b/src/eval/mod.rs
@@ -6,38 +6,28 @@ mod array;
mod dict;
#[macro_use]
mod value;
-#[macro_use]
-mod styles;
+
mod args;
mod capture;
-mod collapse;
-mod content;
mod control;
mod func;
-mod layout;
pub mod methods;
mod module;
pub mod ops;
mod raw;
mod scope;
-mod show;
mod str;
pub use self::str::*;
pub use args::*;
pub use array::*;
pub use capture::*;
-pub use collapse::*;
-pub use content::*;
pub use control::*;
pub use dict::*;
pub use func::*;
-pub use layout::*;
pub use module::*;
pub use raw::*;
pub use scope::*;
-pub use show::*;
-pub use styles::*;
pub use value::*;
use std::collections::BTreeMap;
@@ -48,6 +38,7 @@ use unicode_segmentation::UnicodeSegmentation;
use crate::diag::{At, StrResult, Trace, Tracepoint, TypResult};
use crate::geom::{Angle, Em, Fraction, Length, Ratio};
use crate::library;
+use crate::model::{Content, StyleMap};
use crate::syntax::ast::*;
use crate::syntax::{Span, Spanned};
use crate::util::EcoString;