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

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

Issue 2789863002: Sort procedures by source positions. (Closed)
Patch Set: Created 3 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
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 C extends core::Object { 5 class C extends core::Object {
6 constructor •() → void 6 constructor •() → void
7 : super core::Object::•() 7 : super core::Object::•()
8 ; 8 ;
9 set onlySetter(dynamic value) → void { 9 set onlySetter(dynamic value) → void {
10 core::print("C.onlySetter called with ${value}."); 10 core::print("C.onlySetter called with ${value}.");
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 method testD() → dynamic { 22 method testD() → dynamic {
23 core::print(this.onlySetter); 23 core::print(this.onlySetter);
24 this.onlySetter = "hest"; 24 this.onlySetter = "hest";
25 } 25 }
26 } 26 }
27 class D extends self::C { 27 class D extends self::C {
28 constructor •() → void 28 constructor •() → void
29 : super self::C::•() 29 : super self::C::•()
30 ; 30 ;
31 get onlySetter() → core::String
32 return "D.onlySetter called.";
31 set onlySetter(dynamic value) → void { 33 set onlySetter(dynamic value) → void {
32 core::print("D.onlySetter called with ${value}."); 34 core::print("D.onlySetter called with ${value}.");
33 } 35 }
34 get onlySetter() → core::String
35 return "D.onlySetter called.";
36 } 36 }
37 static set onlySetter(dynamic value) → void { 37 static set onlySetter(dynamic value) → void {
38 core::print("onlySetter called with ${value}."); 38 core::print("onlySetter called with ${value}.");
39 } 39 }
40 static method main() → dynamic { 40 static method main() → dynamic {
41 try { 41 try {
42 core::print(throw new core::NoSuchMethodError::•(null, #onlySetter, <dynamic >[], <dynamic, dynamic>{}, null)); 42 core::print(throw new core::NoSuchMethodError::•(null, #onlySetter, <dynamic >[], <dynamic, dynamic>{}, null));
43 throw "No error thrown"; 43 throw "No error thrown";
44 } 44 }
45 on core::NoSuchMethodError catch(final dynamic e) { 45 on core::NoSuchMethodError catch(final dynamic e) {
46 core::print("Expected error: ${e}"); 46 core::print("Expected error: ${e}");
47 } 47 }
48 self::onlySetter = "fisk"; 48 self::onlySetter = "fisk";
49 new self::C::•().testC(); 49 new self::C::•().testC();
50 new self::D::•().testD(); 50 new self::D::•().testD();
51 } 51 }
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/source/source_class_builder.dart ('k') | pkg/front_end/test/fasta/accessors.dart.outline.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698