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

Side by Side Diff: pkg/kernel/testcases/spec-mode/store_load.baseline.txt

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 Foo extends core::Object {
6 field dynamic _field = null;
7 constructor •() → void
8 : super core::Object::•()
9 ;
10 }
11 class FooValue extends core::Object {
12 constructor •() → void
13 : super core::Object::•()
14 ;
15 }
16 class Bar extends core::Object {
17 field dynamic _field = null;
18 constructor •() → void
19 : super core::Object::•()
20 ;
21 }
22 class BarValue extends core::Object {
23 constructor •() → void
24 : super core::Object::•()
25 ;
26 }
27 static method main() → dynamic {
28 dynamic foo = new self::Foo::•();
29 foo._field = new self::FooValue::•();
30 dynamic fooValue = foo._field;
31 core::print(fooValue);
32 dynamic bar = new self::Bar::•();
33 bar._field = new self::BarValue::•();
34 dynamic barValue = bar._field;
35 core::print(barValue);
36 }
OLDNEW
« no previous file with comments | « pkg/kernel/testcases/spec-mode/static_setter.baseline.txt ('k') | pkg/kernel/testcases/spec-mode/stringliteral.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698