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

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

Issue 2658093007: Update rasta direct expectations. (Closed)
Patch Set: Rebased on 5f1092d494bc8cae2b10917fc41c46764e867923. 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 = null;
7 constructor •() → self::Mixin 7 constructor •() → void
8 : super core::Object::•(); 8 : super core::Object::•()
9 ;
9 method foo() → dynamic 10 method foo() → dynamic
10 return 87; 11 return 87;
11 } 12 }
12 class Foo extends self::Object+Mixin#0 { 13 class Foo extends self::Object&Mixin {
13 constructor •() → self::Foo 14 constructor •() → void
14 : super self::Object+Mixin#0::•(); 15 : super self::Object&Mixin::•()
16 ;
15 method foo() → dynamic 17 method foo() → dynamic
16 return super.{self::Object+Mixin#0::foo}(); 18 return this.{=self::Object&Mixin::foo}();
17 method bar() → dynamic 19 method bar() → dynamic
18 return super.{self::Object+Mixin#0::field}; 20 return this.{=self::Object&Mixin::field};
19 } 21 }
20 abstract class Object+Mixin#0 extends core::Object implements self::Mixin { 22 abstract class Object&Mixin extends core::Object implements self::Mixin {
21 field dynamic field; 23 field dynamic field = null;
22 constructor •() → dynamic 24 constructor •() → void
23 : super core::Object::•(); 25 : super core::Object::•()
26 ;
24 method foo() → dynamic 27 method foo() → dynamic
25 return 87; 28 return 87;
26 } 29 }
27 static method main() → dynamic { 30 static method main() → dynamic {
28 dynamic f = new self::Foo::•(); 31 dynamic f = new self::Foo::•();
29 f.field = 42; 32 f.field = 42;
30 core::print(f.bar()); 33 core::print(f.bar());
31 } 34 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698