summaryrefslogtreecommitdiff
path: root/src/syntax/ast.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/ast.rs')
-rw-r--r--src/syntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/ast.rs b/src/syntax/ast.rs
index 97c8940d..75931a8c 100644
--- a/src/syntax/ast.rs
+++ b/src/syntax/ast.rs
@@ -5,13 +5,13 @@
use std::num::NonZeroUsize;
use std::ops::Deref;
+use ecow::EcoString;
use unscanny::Scanner;
use super::{
is_id_continue, is_id_start, is_newline, split_newlines, Span, SyntaxKind, SyntaxNode,
};
use crate::geom::{AbsUnit, AngleUnit};
-use crate::util::EcoString;
/// A typed AST node.
pub trait AstNode: Sized {