diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-14 15:24:59 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-14 15:55:39 +0200 |
| commit | 6ae6d86b9c6fefe6c5379ac1b20ea90634c09c81 (patch) | |
| tree | 2504c3b46807be148b9efbadf9b23e57bb77b8f3 /src/library/mod.rs | |
| parent | fcb4e451186067cdf6efe3c14cbfa7561b366a6c (diff) | |
Separate type for string values
Diffstat (limited to 'src/library/mod.rs')
| -rw-r--r-- | src/library/mod.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/library/mod.rs b/src/library/mod.rs index 3591e742..f1134282 100644 --- a/src/library/mod.rs +++ b/src/library/mod.rs @@ -18,12 +18,11 @@ use std::rc::Rc; use crate::color::{Color, RgbaColor}; use crate::diag::TypResult; -use crate::eval::{EvalContext, FuncArgs, Scope, Template, Type, Value}; +use crate::eval::{Arguments, EvalContext, Scope, Str, Template, Value}; use crate::exec::Exec; use crate::font::{FontFamily, FontStretch, FontStyle, FontWeight, VerticalFontMetric}; use crate::geom::*; use crate::syntax::Spanned; -use crate::util::EcoString; /// Construct a scope containing all standard library definitions. pub fn new() -> Scope { |
