aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'src/qml/compiler')
-rw-r--r--src/qml/compiler/qv4codegen.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/qml/compiler/qv4codegen.cpp b/src/qml/compiler/qv4codegen.cpp
index 8ff8ab7993..e55f4022d6 100644
--- a/src/qml/compiler/qv4codegen.cpp
+++ b/src/qml/compiler/qv4codegen.cpp
@@ -1318,7 +1318,10 @@ bool Codegen::visit(BinaryExpression *ast)
} else if (ast->op == QSOperator::Assign) {
if (AST::Pattern *p = ast->left->patternCast()) {
RegisterScope scope(this);
- Reference right = expression(ast->right).storeOnStack();
+ Reference right = expression(ast->right);
+ if (hasError)
+ return false;
+ right = right.storeOnStack();
destructurePattern(p, right);
if (!_expr.accept(nx)) {
right.loadInAccumulator();