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

Unified Diff: src/ast-inl.h

Issue 6062002: Merge 6006:6095 from bleeding_edge to experimental/gc branch. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 10 years 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
« no previous file with comments | « src/ast.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast-inl.h
===================================================================
--- src/ast-inl.h (revision 6095)
+++ src/ast-inl.h (working copy)
@@ -71,14 +71,16 @@
: IterationStatement(labels),
cond_(NULL),
condition_position_(-1),
- next_id_(GetNextId()) {
+ continue_id_(GetNextId()),
+ back_edge_id_(GetNextId()) {
}
WhileStatement::WhileStatement(ZoneStringList* labels)
: IterationStatement(labels),
cond_(NULL),
- may_have_function_literal_(true) {
+ may_have_function_literal_(true),
+ body_id_(GetNextId()) {
}
@@ -89,7 +91,8 @@
next_(NULL),
may_have_function_literal_(true),
loop_variable_(NULL),
- next_id_(GetNextId()) {
+ continue_id_(GetNextId()),
+ body_id_(GetNextId()) {
}
« no previous file with comments | « src/ast.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698