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

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

Issue 2921623002: Update expectations files. (Closed)
Patch Set: Update expectations files. Created 3 years, 6 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 21 matching lines...) Expand all
32 return "D.onlySetter called."; 32 return "D.onlySetter called.";
33 set onlySetter(dynamic value) → void { 33 set onlySetter(dynamic value) → void {
34 core::print("D.onlySetter called with ${value}."); 34 core::print("D.onlySetter called with ${value}.");
35 } 35 }
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::_withType(null, #onlySetter, 33, <dynamic>[].toList(growable: false), <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/testcases/accessors.dart ('k') | pkg/front_end/testcases/expressions.dart.direct.expect » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698