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

Unified Diff: pkg/front_end/testcases/inference/try_catch_promotion.dart.strong.expect

Issue 2954823002: Implement type inference for try/catch blocks. (Closed)
Patch Set: Created 3 years, 6 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: pkg/front_end/testcases/inference/try_catch_promotion.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/try_catch_promotion.dart.strong.expect b/pkg/front_end/testcases/inference/try_catch_promotion.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..3fb67e6d5434fe8f8de37e335812fd03849d9d0a
--- /dev/null
+++ b/pkg/front_end/testcases/inference/try_catch_promotion.dart.strong.expect
@@ -0,0 +1,35 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+class C extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class D extends self::C {
+ constructor •() → void
+ : super self::C::•()
+ ;
+}
+class E extends core::StackTrace {
+ constructor •() → void
+ : super core::StackTrace::•()
+ ;
+}
+static method test(() → void f) → void {
+ try {
+ f.call();
+ }
+ on self::C catch(final self::C x, final core::StackTrace y) {
+ self::C x1 = x;
+ core::StackTrace y1 = y;
+ if(x is self::D) {
+ self::D x2 = x{self::D};
+ }
+ if(y is self::E) {
+ self::E y2 = y{self::E};
+ }
+ }
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698