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

Unified Diff: pkg/front_end/testcases/inference/try_catch.dart.direct.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.direct.expect
diff --git a/pkg/front_end/testcases/inference/try_catch.dart.direct.expect b/pkg/front_end/testcases/inference/try_catch.dart.direct.expect
new file mode 100644
index 0000000000000000000000000000000000000000..7a73e4c491ad6cc6c9fdc01396fd75dd3aeccd9b
--- /dev/null
+++ b/pkg/front_end/testcases/inference/try_catch.dart.direct.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 {
+ dynamic x = 0;
+ f.call();
+ }
+ on self::C catch(no-exception-var) {
+ dynamic x = 0;
+ }
+ on self::D catch(final self::D x) {
+ dynamic x2 = x;
+ }
+ on self::E catch(final self::E x, final core::StackTrace y) {
+ dynamic x2 = x;
+ dynamic y2 = y;
+ }
+ on dynamic catch(final dynamic x, final core::StackTrace y) {
+ dynamic x2 = x;
+ dynamic y2 = y;
+ }
+}
+static method main() → dynamic {}
« no previous file with comments | « pkg/front_end/testcases/inference/try_catch.dart ('k') | pkg/front_end/testcases/inference/try_catch.dart.outline.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698