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

Side by Side Diff: pkg/front_end/test/fasta/rasta/issue_000080.dart.outline.expect

Issue 2662703002: Update rasta outline expectations. (Closed)
Patch Set: Rebased on 0401b897958de33f8481b9cb323eab53106a3ce9. Created 3 years, 10 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
OLDNEW
1 library; 1 library;
2 import self as self; 2 import self as self;
3 import "dart:core" as core; 3 import "dart:core" as core;
4 4
5 class Mixin extends core::Object { 5 class Mixin extends core::Object {
6 field dynamic field; 6 field dynamic field;
7 constructor •() → self::Mixin 7 constructor •() → void
8 : super core::Object::•(); 8 ;
9 method foo() → dynamic 9 method foo() → dynamic
10 return 87; 10 ;
11 } 11 }
12 class Foo extends self::Object+Mixin#0 { 12 class Foo extends self::Object&Mixin {
13 constructor •() → self::Foo 13 constructor •() → void
14 : super self::Object+Mixin#0::•(); 14 ;
15 method foo() → dynamic 15 method foo() → dynamic
16 return super.{self::Object+Mixin#0::foo}(); 16 ;
17 method bar() → dynamic 17 method bar() → dynamic
18 return super.{self::Object+Mixin#0::field}; 18 ;
19 } 19 }
20 abstract class Object+Mixin#0 extends core::Object implements self::Mixin { 20 abstract class Object&Mixin = core::Object with self::Mixin {
21 field dynamic field;
22 constructor •() → dynamic
23 : super core::Object::•();
24 method foo() → dynamic
25 return 87;
26 } 21 }
27 static method main() → dynamic { 22 static method main() → dynamic
28 dynamic f = new self::Foo::•(); 23 ;
29 f.field = 42;
30 core::print(f.bar());
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698