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 "dart:_js_helper"; |
5 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
6 | 7 |
7 // Test that native classes can use ordinary Dart classes as mixins. | 8 // Test that native classes can use ordinary Dart classes as mixins. |
8 | 9 |
9 class A native "A" { | 10 @Native("A") |
| 11 class A { |
10 foo() => "A-foo"; | 12 foo() => "A-foo"; |
11 baz() => "A-baz"; | 13 baz() => "A-baz"; |
12 } | 14 } |
13 | 15 |
14 class B extends A with M native "B" { | 16 @Native("B") |
| 17 class B extends A with M { |
15 bar() => baz(); | 18 bar() => baz(); |
16 } | 19 } |
17 | 20 |
18 class M { | 21 class M { |
19 foo() => "M-foo"; | 22 foo() => "M-foo"; |
20 bar() => "M-bar"; | 23 bar() => "M-bar"; |
21 } | 24 } |
22 | 25 |
23 A makeA() native; | 26 A makeA() native; |
24 B makeB() native; | 27 B makeB() native; |
(...skipping 24 matching lines...) Expand all Loading... |
49 Expect.isTrue(b is M); | 52 Expect.isTrue(b is M); |
50 | 53 |
51 M m = new M(); | 54 M m = new M(); |
52 Expect.equals("M-foo", m.foo()); | 55 Expect.equals("M-foo", m.foo()); |
53 Expect.equals("M-bar", m.bar()); | 56 Expect.equals("M-bar", m.bar()); |
54 Expect.throws(() => m.baz(), (error) => error is NoSuchMethodError); | 57 Expect.throws(() => m.baz(), (error) => error is NoSuchMethodError); |
55 Expect.isFalse(m is A); | 58 Expect.isFalse(m is A); |
56 Expect.isFalse(m is B); | 59 Expect.isFalse(m is B); |
57 Expect.isTrue(m is M); | 60 Expect.isTrue(m is M); |
58 } | 61 } |
OLD | NEW |