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

Unified Diff: tests/language/switch_case_test.dart

Issue 184663004: Follow factory redirections when checking case expressions. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments. (500) Created 6 years, 10 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 | « tests/language/language.status ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/switch_case_test.dart
diff --git a/tests/language/switch_case_test.dart b/tests/language/switch_case_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..60c150e4853e38f760342f1fc966f5c051f9a4d6
--- /dev/null
+++ b/tests/language/switch_case_test.dart
@@ -0,0 +1,46 @@
+// Copyright (c) 2014, 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.
+
+import "package:expect/expect.dart";
+
+class A {
+ const A();
+ const factory A.B() = B;
+ const factory A.C() = C;
+ const factory A.C2() = D;
+}
+
+class B implements A {
+ const B();
+
+ operator ==(o) => true; /// 00: compile-time error
+}
+
+class C implements A {
+ final int x;
+ const C() : x = 0;
+ const C.fromD() : x = 1;
+}
+
+class D implements C {
+ const factory D() = C.fromD;
+}
+
+main() {
+ switch (new B()) {
+ case const A.B(): Expect.fail("bad switch"); break; /// 00: continued
+ }
+
+ switch (new C()) {
+ case const C(): Expect.fail("bad switch"); break;
+ case const A.C(): Expect.fail("bad switch"); break;
+ case const A.C2(): Expect.fail("bad switch"); break;
+ case const A(): Expect.fail("bad switch"); break; /// 01: compile-time error
+ }
+
+ switch (new A()) {
+ case const A(): Expect.fail("bad switch"); break;
+ case const A.B(): Expect.fail("bad switch"); break; /// 02: compile-time error
+ }
+}
« no previous file with comments | « tests/language/language.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698