diff options
Diffstat (limited to 'src/syntax/expr.rs')
| -rw-r--r-- | src/syntax/expr.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs index 3a71bedd..aac23a6f 100644 --- a/src/syntax/expr.rs +++ b/src/syntax/expr.rs @@ -170,7 +170,7 @@ pub struct TemplateExpr { /// The source code location. pub span: Span, /// The contents of the template. - pub tree: Rc<SyntaxTree>, + pub tree: SyntaxTree, } /// A grouped expression: `(1 + 2)`. @@ -406,8 +406,6 @@ pub struct CallExpr { pub span: Span, /// The function to call. pub callee: Expr, - /// Whether the call is wide, that is, capturing the template behind it. - pub wide: bool, /// The arguments to the function. pub args: CallArgs, } |
