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