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

Unified Diff: pkg/kernel/testcases/strong-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/strong-mode/store_load.baseline.txt
diff --git a/pkg/kernel/testcases/strong-mode/store_load.baseline.txt b/pkg/kernel/testcases/strong-mode/store_load.baseline.txt
deleted file mode 100644
index c06ea707f23b6c0bd443e0a14ca67a7f1c7e7797..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/strong-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 {
- self::Foo foo = new self::Foo::•();
- foo.{self::Foo::_field} = new self::FooValue::•();
- dynamic fooValue = foo.{self::Foo::_field};
- core::print(fooValue);
- self::Bar bar = new self::Bar::•();
- bar.{self::Bar::_field} = new self::BarValue::•();
- dynamic barValue = bar.{self::Bar::_field};
- core::print(barValue);
-}

Powered by Google App Engine
This is Rietveld 408576698