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"; |
| 6 |
5 // Test that native classes can use ordinary Dart classes as mixins. | 7 // Test that native classes can use ordinary Dart classes as mixins. |
6 | 8 |
7 class A native "*A" { | 9 class A native "*A" { |
8 foo() => "A-foo"; | 10 foo() => "A-foo"; |
9 baz() => "A-baz"; | 11 baz() => "A-baz"; |
10 } | 12 } |
11 | 13 |
12 class B extends A with M1, M2 native "*B" { | 14 class B extends A with M1, M2 native "*B" { |
13 bar() => baz(); | 15 bar() => baz(); |
14 } | 16 } |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 | 65 |
64 M2 m2 = new M2(); | 66 M2 m2 = new M2(); |
65 Expect.equals("M2-foo", m2.foo()); | 67 Expect.equals("M2-foo", m2.foo()); |
66 Expect.throws(() => m2.bar(), (error) => error is NoSuchMethodError); | 68 Expect.throws(() => m2.bar(), (error) => error is NoSuchMethodError); |
67 Expect.throws(() => m2.baz(), (error) => error is NoSuchMethodError); | 69 Expect.throws(() => m2.baz(), (error) => error is NoSuchMethodError); |
68 Expect.isFalse(m2 is A); | 70 Expect.isFalse(m2 is A); |
69 Expect.isFalse(m2 is B); | 71 Expect.isFalse(m2 is B); |
70 Expect.isFalse(m2 is M1); | 72 Expect.isFalse(m2 is M1); |
71 Expect.isTrue(m2 is M2); | 73 Expect.isTrue(m2 is M2); |
72 } | 74 } |
OLD | NEW |