summaryrefslogtreecommitdiff
path: root/src/syntax/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax/node.rs')
-rw-r--r--src/syntax/node.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syntax/node.rs b/src/syntax/node.rs
index e153b0bf..d90a44ac 100644
--- a/src/syntax/node.rs
+++ b/src/syntax/node.rs
@@ -3,10 +3,11 @@ use std::ops::{Deref, Range};
use std::rc::Rc;
use std::sync::Arc;
+use ecow::EcoString;
+
use super::ast::AstNode;
use super::{SourceId, Span, SyntaxKind};
use crate::diag::SourceError;
-use crate::util::EcoString;
/// A node in the untyped syntax tree.
#[derive(Clone, PartialEq, Hash)]