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

Side by Side Diff: tests/compiler/dart2js_native/native_mixin_multiple_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 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 M1, M2 native "*B" { 14 class B extends A with M1, M2 native "B" {
15 bar() => baz(); 15 bar() => baz();
16 } 16 }
17 17
18 class M1 { 18 class M1 {
19 foo() => "M1-foo"; 19 foo() => "M1-foo";
20 baz() => "M1-baz"; 20 baz() => "M1-baz";
21 } 21 }
22 22
23 class M2 { 23 class M2 {
24 foo() => "M2-foo"; 24 foo() => "M2-foo";
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 65
66 M2 m2 = new M2(); 66 M2 m2 = new M2();
67 Expect.equals("M2-foo", m2.foo()); 67 Expect.equals("M2-foo", m2.foo());
68 Expect.throws(() => m2.bar(), (error) => error is NoSuchMethodError); 68 Expect.throws(() => m2.bar(), (error) => error is NoSuchMethodError);
69 Expect.throws(() => m2.baz(), (error) => error is NoSuchMethodError); 69 Expect.throws(() => m2.baz(), (error) => error is NoSuchMethodError);
70 Expect.isFalse(m2 is A); 70 Expect.isFalse(m2 is A);
71 Expect.isFalse(m2 is B); 71 Expect.isFalse(m2 is B);
72 Expect.isFalse(m2 is M1); 72 Expect.isFalse(m2 is M1);
73 Expect.isTrue(m2 is M2); 73 Expect.isTrue(m2 is M2);
74 } 74 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js_native/native_mixin_field_test.dart ('k') | tests/compiler/dart2js_native/native_mixin_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698