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

Side by Side Diff: pkg/fasta/test/mixin.dart.direct.expect

Issue 2631613003: Add Fasta tests. (Closed)
Patch Set: Address review comments. Created 3 years, 11 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
« no previous file with comments | « pkg/fasta/test/mixin.dart ('k') | pkg/fasta/test/mixin.dart.outline.expect » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 library;
2 import self as self;
3 import "dart:core" as core;
4
5 abstract class M1 extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 method m() → dynamic
10 return core::print("M1");
11 }
12 abstract class M2 extends core::Object {
13 constructor •() → void
14 : super core::Object::•()
15 ;
16 method m() → dynamic
17 return core::print("M2");
18 }
19 class C extends self::Object&M1&M2 {
20 constructor •() → void
21 : super self::Object&M1&M2::•()
22 ;
23 }
24 abstract class Object&M1 extends core::Object implements self::M1 {
25 constructor •() → void
26 : super core::Object::•()
27 ;
28 method m() → dynamic
29 return core::print("M1");
30 }
31 abstract class Object&M1&M2 extends self::Object&M1 implements self::M2 {
32 constructor •() → void
33 : super self::Object&M1::•()
34 ;
35 method m() → dynamic
36 return core::print("M2");
37 }
38 static method main() → dynamic {
39 new self::C::•().m();
40 }
OLDNEW
« no previous file with comments | « pkg/fasta/test/mixin.dart ('k') | pkg/fasta/test/mixin.dart.outline.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698