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

Unified Diff: pkg/kernel/testcases/strong-mode/bad_store.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/bad_store.baseline.txt
diff --git a/pkg/kernel/testcases/strong-mode/bad_store.baseline.txt b/pkg/kernel/testcases/strong-mode/bad_store.baseline.txt
deleted file mode 100644
index 161e6a5f8cad9324f71defbda078e9b6d539c26a..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/strong-mode/bad_store.baseline.txt
+++ /dev/null
@@ -1,24 +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::•()
- ;
-}
-static method identity(dynamic x) → dynamic
- return x;
-static method use(dynamic x) → void {}
-static method main(core::List<core::String> args) → dynamic {
- dynamic foo = self::identity(new self::Foo::•());
- if(args.{core::List::length}.{core::num::>}(1)) {
- foo.field = "string";
- dynamic first = foo.field;
- self::use(first);
- foo.noField = "string";
- dynamic second = foo.noField;
- self::use(second);
- }
-}
« no previous file with comments | « pkg/kernel/testcases/strong-mode/async_function.baseline.txt ('k') | pkg/kernel/testcases/strong-mode/call.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698