diff options
| author | Laurenz <laurmaedje@gmail.com> | 2020-09-03 19:56:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-03 19:56:37 +0200 |
| commit | cc5a74d5a99a26f46deef4f6ea20391e5327f0e6 (patch) | |
| tree | eb0084ea898a6e2e7c9034778654b02944048cbb /src/compute | |
| parent | 7f575dc09870848a1a4e5ba1f17a47cf83b60046 (diff) | |
| parent | 7f8f225cb3cb44367d731c544f7ce1eebdb97dd5 (diff) | |
Merge pull request #16 from typst/split-up-parsing
Split up parser into multiple files 🧱
Diffstat (limited to 'src/compute')
| -rw-r--r-- | src/compute/value.rs | 3 |
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. |
