| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 class S { } | 7 class S {} |
| 8 class M1 { } | |
| 9 class M2 { } | |
| 10 | 8 |
| 11 class C extends S with M1 { } | 9 class M1 {} |
| 12 class D extends S with M1, M2 { } | |
| 13 class E extends S with M2, M1 { } | |
| 14 class F extends E { } | |
| 15 | 10 |
| 16 class C_ extends S with M1 { } | 11 class M2 {} |
| 17 class D_ extends S with M1, M2 { } | 12 |
| 18 class E_ extends S with M2, M1 { } | 13 class C extends S with M1 {} |
| 19 class F_ extends E_ { } | 14 |
| 15 class D extends S with M1, M2 {} |
| 16 |
| 17 class E extends S with M2, M1 {} |
| 18 |
| 19 class F extends E {} |
| 20 |
| 21 class C_ extends S with M1 {} |
| 22 |
| 23 class D_ extends S with M1, M2 {} |
| 24 |
| 25 class E_ extends S with M2, M1 {} |
| 26 |
| 27 class F_ extends E_ {} |
| 20 | 28 |
| 21 main() { | 29 main() { |
| 22 var c = new C(); | 30 var c = new C(); |
| 23 Expect.isTrue(c is C); | 31 Expect.isTrue(c is C); |
| 24 Expect.isFalse(c is D); | 32 Expect.isFalse(c is D); |
| 25 Expect.isFalse(c is E); | 33 Expect.isFalse(c is E); |
| 26 Expect.isFalse(c is F); | 34 Expect.isFalse(c is F); |
| 27 Expect.isTrue(c is S); | 35 Expect.isTrue(c is S); |
| 28 Expect.isTrue(c is M1); | 36 Expect.isTrue(c is M1); |
| 29 Expect.isFalse(c is M2); | 37 Expect.isFalse(c is M2); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 Expect.isFalse(e is C_); | 78 Expect.isFalse(e is C_); |
| 71 Expect.isFalse(e is D_); | 79 Expect.isFalse(e is D_); |
| 72 Expect.isFalse(e is E_); | 80 Expect.isFalse(e is E_); |
| 73 Expect.isFalse(e is F_); | 81 Expect.isFalse(e is F_); |
| 74 | 82 |
| 75 Expect.isFalse(f is C_); | 83 Expect.isFalse(f is C_); |
| 76 Expect.isFalse(f is D_); | 84 Expect.isFalse(f is D_); |
| 77 Expect.isFalse(f is E_); | 85 Expect.isFalse(f is E_); |
| 78 Expect.isFalse(f is F_); | 86 Expect.isFalse(f is F_); |
| 79 } | 87 } |
| OLD | NEW |