diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-02-23 12:15:38 +0100 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-02-23 12:20:47 +0100 |
| commit | a1d47695a2af5afa466c21ad812a1a8212780293 (patch) | |
| tree | a3210a23abbecaf69479f1da8772e4e3f7cce32d /src/model/methods.rs | |
| parent | 6e65ebf23641a755b0088569751c0b02e898f1e9 (diff) | |
Switch to ecow
Diffstat (limited to 'src/model/methods.rs')
| -rw-r--r-- | src/model/methods.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/model/methods.rs b/src/model/methods.rs index c0b63669..40e99de4 100644 --- a/src/model/methods.rs +++ b/src/model/methods.rs @@ -1,9 +1,10 @@ //! Methods on values. +use ecow::EcoString; + use super::{Args, Str, Value, Vm}; use crate::diag::{At, SourceResult}; use crate::syntax::Span; -use crate::util::EcoString; /// Call a method on a value. pub fn call( |
