summaryrefslogtreecommitdiff
path: root/src/syntax/expr.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-09-15 13:12:07 +0200
committerLaurenz <laurmaedje@gmail.com>2021-09-15 13:12:07 +0200
commitea921aca5d6268474383b6bac8fdd78de1f23c5a (patch)
tree797aa10f026abab2c9bde6fef17026f83338dd11 /src/syntax/expr.rs
parent5de791d9e6a1006dc6a017ec8e20a1c70a91a780 (diff)
Blocks directly in template also scope
Diffstat (limited to 'src/syntax/expr.rs')
-rw-r--r--src/syntax/expr.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/syntax/expr.rs b/src/syntax/expr.rs
index 11a85404..68b96f9c 100644
--- a/src/syntax/expr.rs
+++ b/src/syntax/expr.rs
@@ -190,8 +190,6 @@ pub struct BlockExpr {
pub span: Span,
/// The list of expressions contained in the block.
pub exprs: Vec<Expr>,
- /// Whether the block should create a scope.
- pub scoping: bool,
}
/// A unary operation: `-x`.