diff options
Diffstat (limited to 'src/syntax/tree.rs')
| -rw-r--r-- | src/syntax/tree.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/tree.rs b/src/syntax/tree.rs index 715db109..f243e67a 100644 --- a/src/syntax/tree.rs +++ b/src/syntax/tree.rs @@ -4,12 +4,12 @@ use std::fmt::{self, Debug, Formatter}; use super::decoration::Decoration; use super::span::{SpanVec, Spanned}; -use super::tokens::is_identifier; use crate::color::RgbaColor; use crate::compute::table::{SpannedEntry, Table}; use crate::compute::value::{TableValue, Value}; use crate::layout::LayoutContext; use crate::length::Length; +use crate::parse::is_identifier; use crate::{DynFuture, Feedback}; /// A collection of nodes which form a tree together with the nodes' children. |
