summaryrefslogtreecommitdiff
path: root/src/compute/value.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2020-09-03 19:16:19 +0200
committerLaurenz <laurmaedje@gmail.com>2020-09-03 19:16:19 +0200
commit7f8f225cb3cb44367d731c544f7ce1eebdb97dd5 (patch)
treeeb0084ea898a6e2e7c9034778654b02944048cbb /src/compute/value.rs
parent7f575dc09870848a1a4e5ba1f17a47cf83b60046 (diff)
Split up parser into multiple files 🧱
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.
Diffstat (limited to 'src/compute/value.rs')
-rw-r--r--src/compute/value.rs3
1 files changed, 1 insertions, 2 deletions
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.