Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Side by Side Diff: tests/compiler/dart2js_native/native_mixin_field_test.dart

Issue 13973017: Revert "Revert "Allow multiple tags in native clause."" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698