Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 43bde6ad25cc736bd89aab639ebb7398ccf6a947..a550c6cfd23e1f67ef2423b4901c48367b29868c 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -3157,7 +3157,8 @@ class AstVisitor BASE_EMBEDDED { |
if (stack_overflow_) return true; \ |
StackLimitCheck check(zone_->isolate()); \ |
if (!check.HasOverflowed()) return false; \ |
- return (stack_overflow_ = true); \ |
+ stack_overflow_ = true; \ |
+ return true; \ |
} \ |
\ |
private: \ |