diff options
| author | Laurenz <laurmaedje@gmail.com> | 2022-11-25 10:36:31 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2022-11-25 12:16:13 +0100 |
| commit | bf5edbbbbb75120d065d1c9587ccfa4eed4fdca1 (patch) | |
| tree | 956af910ab27a8cec0db83171cd3f0b6d0570a60 /src/model/mod.rs | |
| parent | 96f72eee6c6b595164c7a0576c407d7a590661db (diff) | |
Tidy up
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index f5c1e6dd..6943217b 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -20,9 +20,9 @@ mod eval; mod func; mod methods; mod ops; +mod realize; mod scope; mod typeset; -mod vm; #[doc(hidden)] pub use once_cell; @@ -36,9 +36,9 @@ pub use self::dict::*; pub use self::eval::*; pub use self::func::*; pub use self::library::*; +pub use self::realize::*; pub use self::scope::*; pub use self::str::*; pub use self::styles::*; pub use self::typeset::*; pub use self::value::*; -pub use self::vm::*; |
