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

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

Issue 2825063002: Move kernel baseline tests to front_end. (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
(Empty)
1 library;
2 import self as self;
3 import "dart:core" as core;
4
5 class C extends core::Object {
6 constructor •() → void
7 : super core::Object::•()
8 ;
9 set onlySetter(dynamic value) → void {
10 core::print("C.onlySetter called with ${value}.");
11 }
12 method testC() → dynamic {
13 try {
14 core::print(this.onlySetter);
15 throw "No error thrown";
16 }
17 on core::NoSuchMethodError catch(final dynamic e) {
18 core::print("Expected error: ${e}");
19 }
20 this.onlySetter = "hest";
21 }
22 method testD() → dynamic {
23 core::print(this.onlySetter);
24 this.onlySetter = "hest";
25 }
26 }
27 class D extends self::C {
28 constructor •() → void
29 : super self::C::•()
30 ;
31 get onlySetter() → core::String
32 return "D.onlySetter called.";
33 set onlySetter(dynamic value) → void {
34 core::print("D.onlySetter called with ${value}.");
35 }
36 }
37 static set onlySetter(dynamic value) → void {
38 core::print("onlySetter called with ${value}.");
39 }
40 static method main() → dynamic {
41 try {
42 core::print(throw new core::NoSuchMethodError::•(null, #onlySetter, <dynamic >[], <dynamic, dynamic>{}, null));
43 throw "No error thrown";
44 }
45 on core::NoSuchMethodError catch(final dynamic e) {
46 core::print("Expected error: ${e}");
47 }
48 self::onlySetter = "fisk";
49 new self::C::•().testC();
50 new self::D::•().testD();
51 }
OLDNEW
« no previous file with comments | « pkg/front_end/test/fasta/accessors.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