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

Unified Diff: pkg/compiler/lib/src/js_backend/codegen/codegen.dart

Issue 1366673003: dart2js: fix for https://github.com/dart-lang/sdk/issues/24412 (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: delete whitespace Created 5 years, 3 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 | pkg/compiler/lib/src/js_backend/codegen/glue.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/js_backend/codegen/codegen.dart
diff --git a/pkg/compiler/lib/src/js_backend/codegen/codegen.dart b/pkg/compiler/lib/src/js_backend/codegen/codegen.dart
index 963f1d7f43ae700436985490c217268f38209910..791677068760e9f52c606fbbc7d3729894f60943 100644
--- a/pkg/compiler/lib/src/js_backend/codegen/codegen.dart
+++ b/pkg/compiler/lib/src/js_backend/codegen/codegen.dart
@@ -639,6 +639,14 @@ class CodeGenerator extends tree_ir.StatementVisitor
@override
void visitTry(tree_ir.Try node) {
+ void register(ClassElement classElement) {
+ if (classElement == null) return;
+ registry.registerInstantiatedClass(classElement);
+ }
+ // We might catch JavaScript exceptions.
+ register(glue.jsPlainJavaScriptObjectClass);
+ register(glue.jsUnknownJavaScriptObjectClass);
+
js.Block tryBlock = buildBodyBlock(node.tryBody);
tree_ir.Variable exceptionVariable = node.catchParameters.first;
js.VariableDeclaration exceptionParameter =
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/codegen/glue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698