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

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

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
diff --git a/pkg/front_end/testcases/inference/try_catch_promotion.dart b/pkg/front_end/testcases/inference/try_catch_promotion.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c29554f1dff29854be78e62f8e7fb91a634f3338
--- /dev/null
+++ b/pkg/front_end/testcases/inference/try_catch_promotion.dart
@@ -0,0 +1,29 @@
+// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+/*@testedFeatures=inference*/
+library test;
+
+class C {}
+
+class D extends C {}
+
+class E extends StackTrace {}
+
+void test(void f()) {
+ try {
+ f();
+ } on C catch (x, y) {
+ var /*@type=C*/ x1 = x;
+ var /*@type=StackTrace*/ y1 = y;
+ if (x is D) {
+ var /*@type=D*/ x2 = /*@promotedType=D*/ x;
+ }
+ if (y is E) {
+ var /*@type=E*/ y2 = /*@promotedType=E*/ y;
+ }
+ }
+}
+
+main() {}

Powered by Google App Engine
This is Rietveld 408576698