| 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 with fields | 7 // Test that native classes can use ordinary Dart classes with fields |
| 6 // as mixins. | 8 // as mixins. |
| 7 | 9 |
| 8 class A native "*A" { | 10 class A native "*A" { |
| 9 var foo; | 11 var foo; |
| 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 var bar; | 15 var bar; |
| 14 } | 16 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); | 53 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); |
| 52 Expect.isNull(m1.baz); | 54 Expect.isNull(m1.baz); |
| 53 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); | 55 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); |
| 54 | 56 |
| 55 M2 m2 = new M2(); | 57 M2 m2 = new M2(); |
| 56 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); | 58 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); |
| 57 Expect.isNull(m2.bar); | 59 Expect.isNull(m2.bar); |
| 58 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); | 60 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); |
| 59 Expect.isNull(m2.buz); | 61 Expect.isNull(m2.buz); |
| 60 } | 62 } |
| OLD | NEW |