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

Unified Diff: runtime/vm/parser.cc

Issue 35693010: Fix VM issue 1372: super constructor invocation with redirection. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 2 months 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 | « no previous file | tests/co19/co19-runtime.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/parser.cc
===================================================================
--- runtime/vm/parser.cc (revision 29080)
+++ runtime/vm/parser.cc (working copy)
@@ -2506,7 +2506,9 @@
}
SequenceNode* init_statements = CloseBlock();
- if (init_statements->length() > 0) {
+ if (is_redirecting_constructor) {
+ current_block_->statements->Add(init_statements);
hausner 2013/10/23 15:50:31 Would be nice to add the description of your chang
Florian Schneider 2013/10/23 16:03:48 Done.
+ } else if (init_statements->length() > 0) {
// Generate guard around the initializer code.
LocalVariable* phase_param = LookupPhaseParameter();
AstNode* phase_value = new LoadLocalNode(TokenPos(), phase_param);
« no previous file with comments | « no previous file | tests/co19/co19-runtime.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698