From a1d47695a2af5afa466c21ad812a1a8212780293 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Thu, 23 Feb 2023 12:15:38 +0100 Subject: Switch to ecow --- src/syntax/node.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/syntax/node.rs') 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)] -- cgit v1.2.3