diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-06-30 11:40:27 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-06-30 11:40:27 +0200 |
| commit | 470f8001a1dba0022ec9d3e46c67c3bbc31359be (patch) | |
| tree | d68f60533201658148ea508c90ba704f806561d5 /src/syntax/expr.rs | |
| parent | 45812b700114a51f0ee21e31f4454cde3729eaf5 (diff) | |
No more collisions between syntax::Tree and layout::Tree
Diffstat (limited to 'src/syntax/expr.rs')
| -rw-r--r-- | src/syntax/expr.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs index aabff1ea..26ec7f48 100644 --- a/src/syntax/expr.rs +++ b/src/syntax/expr.rs @@ -158,7 +158,7 @@ pub struct TemplateExpr { /// The source code location. pub span: Span, /// The contents of the template. - pub tree: Rc<Tree>, + pub tree: Rc<SyntaxTree>, } /// A grouped expression: `(1 + 2)`. |
