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

Unified Diff: pkg/kernel/testcases/spec-mode/uninitialized_fields.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/uninitialized_fields.baseline.txt
diff --git a/pkg/kernel/testcases/spec-mode/uninitialized_fields.baseline.txt b/pkg/kernel/testcases/spec-mode/uninitialized_fields.baseline.txt
deleted file mode 100644
index c4b90446c9977835fb664e6c634704b4325b130b..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/spec-mode/uninitialized_fields.baseline.txt
+++ /dev/null
@@ -1,37 +0,0 @@
-library;
-import self as self;
-import "dart:core" as core;
-
-class Uninitialized extends core::Object {
- field core::int x = null;
- constructor •() → void
- : super core::Object::•()
- ;
-}
-class PartiallyInitialized extends core::Object {
- field core::int x = null;
- constructor •(core::int x) → void
- : self::PartiallyInitialized::x = x, super core::Object::•()
- ;
- constructor noInitializer() → void
- : super core::Object::•()
- ;
-}
-class Initialized extends core::Object {
- field core::int x;
- constructor •(core::int x) → void
- : self::Initialized::x = x, super core::Object::•()
- ;
-}
-class Forwarding extends core::Object {
- field core::int x;
- constructor initialize(core::int x) → void
- : self::Forwarding::x = x, super core::Object::•()
- ;
- constructor •(core::int arg) → void
- : this self::Forwarding::initialize(arg)
- ;
-}
-static field core::int uninitializedTopLevel = null;
-static field core::int initializedTopLevel = 4;
-static method main() → dynamic {}
« no previous file with comments | « pkg/kernel/testcases/spec-mode/stringliteral.baseline.txt ('k') | pkg/kernel/testcases/spec-mode/unused_methods.baseline.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698