diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-07-29 11:35:49 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-07-29 11:35:49 +0200 |
| commit | 312dcd070cf79c1dd5503f90ef10588fe4612108 (patch) | |
| tree | d995673742bfddbc107dc8d384e1d8ecd4d0ccb6 /src/parse/resolve.rs | |
| parent | 6ebe6218343a520dce2a5e560edbdc6fa0e9e44b (diff) | |
Move EcoString and OptionExt into util
Diffstat (limited to 'src/parse/resolve.rs')
| -rw-r--r-- | src/parse/resolve.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse/resolve.rs b/src/parse/resolve.rs index c3676215..f97d5383 100644 --- a/src/parse/resolve.rs +++ b/src/parse/resolve.rs @@ -1,6 +1,6 @@ use super::{is_newline, Scanner}; -use crate::eco::EcoString; use crate::syntax::{Ident, RawNode, Span}; +use crate::util::EcoString; /// Resolve all escape sequences in a string. pub fn resolve_string(string: &str) -> EcoString { |
