| 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 with fields | 7 // Test that native classes can use ordinary Dart classes with fields |
| 8 // as mixins. | 8 // as mixins. |
| 9 | 9 |
| 10 class A native "*A" { | 10 class A native "A" { |
| 11 var foo; | 11 var foo; |
| 12 } | 12 } |
| 13 | 13 |
| 14 class B extends A with M1, M2 native "*B" { | 14 class B extends A with M1, M2 native "B" { |
| 15 var bar; | 15 var bar; |
| 16 } | 16 } |
| 17 | 17 |
| 18 class M1 { | 18 class M1 { |
| 19 var baz; | 19 var baz; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class M2 { | 22 class M2 { |
| 23 var bar; | 23 var bar; |
| 24 var buz; | 24 var buz; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 53 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); | 53 Expect.throws(() => m1.bar, (e) => e is NoSuchMethodError); |
| 54 Expect.isNull(m1.baz); | 54 Expect.isNull(m1.baz); |
| 55 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); | 55 Expect.throws(() => m1.buz, (e) => e is NoSuchMethodError); |
| 56 | 56 |
| 57 M2 m2 = new M2(); | 57 M2 m2 = new M2(); |
| 58 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); | 58 Expect.throws(() => m2.foo, (e) => e is NoSuchMethodError); |
| 59 Expect.isNull(m2.bar); | 59 Expect.isNull(m2.bar); |
| 60 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); | 60 Expect.throws(() => m2.baz, (e) => e is NoSuchMethodError); |
| 61 Expect.isNull(m2.buz); | 61 Expect.isNull(m2.buz); |
| 62 } | 62 } |
| OLD | NEW |