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

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

Issue 13947004: dart2js: Allow 'throw' when inlining (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Nicolas' Code review feedback 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/compiler.dart
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
index a8566268e4d5da685238aa103dc2fed66bc3995c..f6020f2fb70ee9fa2897186b4ab565dc4be95ce9 100644
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
@@ -148,7 +148,8 @@ abstract class Backend {
TreeElements elements) {}
void registerStringInterpolation(TreeElements elements) {}
void registerCatchStatement(TreeElements elements) {}
- void registerThrow(TreeElements elements) {}
+ void registerWrapException(TreeElements elements) {}
+ void registerThrowExpression(TreeElements elements) {}
void registerLazyField(TreeElements elements) {}
void registerTypeVariableExpression(TreeElements elements) {}
void registerTypeLiteral(TreeElements elements) {}

Powered by Google App Engine
This is Rietveld 408576698