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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: pkg/kernel/testcases/spec-mode/store_load.baseline.txt
diff --git a/pkg/kernel/testcases/spec-mode/store_load.baseline.txt b/pkg/kernel/testcases/spec-mode/store_load.baseline.txt
deleted file mode 100644
index 166ecccfa830fa12d4f57e9cea116e80c9f98d4c..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/spec-mode/store_load.baseline.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-library;
-import self as self;
-import "dart:core" as core;
-
-class Foo extends core::Object {
- field dynamic _field = null;
- constructor •() → void
- : super core::Object::•()
- ;
-}
-class FooValue extends core::Object {
- constructor •() → void
- : super core::Object::•()
- ;
-}
-class Bar extends core::Object {
- field dynamic _field = null;
- constructor •() → void
- : super core::Object::•()
- ;
-}
-class BarValue extends core::Object {
- constructor •() → void
- : super core::Object::•()
- ;
-}
-static method main() → dynamic {
- dynamic foo = new self::Foo::•();
- foo._field = new self::FooValue::•();
- dynamic fooValue = foo._field;
- core::print(fooValue);
- dynamic bar = new self::Bar::•();
- bar._field = new self::BarValue::•();
- dynamic barValue = bar._field;
- core::print(barValue);
-}
« 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