From 7f8f225cb3cb44367d731c544f7ce1eebdb97dd5 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Thu, 3 Sep 2020 19:16:19 +0200 Subject: =?UTF-8?q?Split=20up=20parser=20into=20multiple=20files=20?= =?UTF-8?q?=F0=9F=A7=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Splits up into: - escaping: resolving of escape sequences - parser: the parsing code - tests: all integrated parsing tests Also moves Ident from the root syntax module into the tree module. --- src/compute/value.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/compute') diff --git a/src/compute/value.rs b/src/compute/value.rs index 9f1174ec..ce7e8d57 100644 --- a/src/compute/value.rs +++ b/src/compute/value.rs @@ -12,8 +12,7 @@ use crate::layout::{Command, Commands, Dir, LayoutContext, SpecAlign}; use crate::length::{Length, ScaleLength}; use crate::paper::Paper; use crate::syntax::span::{Span, Spanned}; -use crate::syntax::tree::{SyntaxNode, SyntaxTree}; -use crate::syntax::Ident; +use crate::syntax::tree::{Ident, SyntaxNode, SyntaxTree}; use crate::{DynFuture, Feedback, Pass}; /// A computational value. -- cgit v1.2.3