Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: src/ast.cc

Issue 8688007: Statically check for assignments to const in harmony mode. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index 13e55894d58cb0560e3fcd39b89edb1735420652..577b0ef53a02f1c90335b535f3de7a4e870a578c 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -70,6 +70,7 @@ VariableProxy::VariableProxy(Isolate* isolate, Variable* var)
var_(NULL), // Will be set by the call to BindTo.
is_this_(var->is_this()),
is_trivial_(false),
+ is_used_as_lvalue_(false),
position_(RelocInfo::kNoPosition) {
BindTo(var);
}
@@ -84,6 +85,7 @@ VariableProxy::VariableProxy(Isolate* isolate,
var_(NULL),
is_this_(is_this),
is_trivial_(false),
+ is_used_as_lvalue_(false),
position_(position) {
// Names must be canonicalized for fast equality checks.
ASSERT(name->IsSymbol());

Powered by Google App Engine
This is Rietveld 408576698