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

Unified Diff: pkg/front_end/testcases/inference/try_catch.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.dart.strong.expect
diff --git a/pkg/front_end/testcases/inference/try_catch.dart.strong.expect b/pkg/front_end/testcases/inference/try_catch.dart.strong.expect
new file mode 100644
index 0000000000000000000000000000000000000000..e84ac0cc855285249bf38d7af6cfb09459a41e9a
--- /dev/null
+++ b/pkg/front_end/testcases/inference/try_catch.dart.strong.expect
@@ -0,0 +1,40 @@
+library test;
+import self as self;
+import "dart:core" as core;
+
+class C extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class D extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+class E extends core::Object {
+ constructor •() → void
+ : super core::Object::•()
+ ;
+}
+static method test(() → void f) → void {
+ try {
+ core::int x = 0;
+ f.call();
+ }
+ on self::C catch(no-exception-var) {
+ core::int x = 0;
+ }
+ on self::D catch(final self::D x) {
+ self::D x2 = x;
+ }
+ on self::E catch(final self::E x, final core::StackTrace y) {
+ self::E x2 = x;
+ core::StackTrace y2 = y;
+ }
+ on dynamic catch(final dynamic x, final core::StackTrace y) {
+ dynamic x2 = x;
+ core::StackTrace y2 = y;
+ }
+}
+static method main() → dynamic {}

Powered by Google App Engine
This is Rietveld 408576698