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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/builder.dart

Issue 14071003: Fix first part on liveness analysis of bug https://code.google.com/p/dart/issues/detail?id=9687: a … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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
Index: sdk/lib/_internal/compiler/implementation/ssa/builder.dart
===================================================================
--- sdk/lib/_internal/compiler/implementation/ssa/builder.dart (revision 21192)
+++ sdk/lib/_internal/compiler/implementation/ssa/builder.dart (working copy)
@@ -3899,9 +3899,11 @@
compiler.internalError(
'rethrowableException should not be null', node: node);
}
+ handleInTryStatement();
ngeoffray 2013/04/10 14:51:16 We do this for return/break/continue, but we forgo
close(new HThrow(exception, isRethrow: true));
} else {
visit(node.expression);
+ handleInTryStatement();
close(new HThrow(pop()));
}
}
« no previous file with comments | « no previous file | tests/language/execute_finally10_test.dart » ('j') | tests/language/execute_finally10_test.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698