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

Unified Diff: pkg/kernel/testcases/type-propagation/closure.baseline.txt

Issue 2781473004: Remove some additional code that depended on the old type propagation. (Closed)
Patch Set: Update fasta shadow AST Created 3 years, 9 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/type-propagation/closure.baseline.txt
diff --git a/pkg/kernel/testcases/type-propagation/closure.baseline.txt b/pkg/kernel/testcases/type-propagation/closure.baseline.txt
deleted file mode 100644
index abb3a73b75d6c7f71e938830e6be58698c858000..0000000000000000000000000000000000000000
--- a/pkg/kernel/testcases/type-propagation/closure.baseline.txt
+++ /dev/null
@@ -1,27 +0,0 @@
-library;
-import self as self;
-import "dart:core" as core;
-
-class Foo extends core::Object {
- field dynamic/self::Bar! {other} _field = new self::Bar::•();
- constructor •() → void
- : super core::Object::•()
- ;
-}
-class Bar extends core::Object {
- constructor •() → void
- : super core::Object::•()
- ;
-}
-static method useCallback(dynamic/core::Function* {other} callback) → dynamic/Null {
- dynamic/self::Foo! {other} _ = callback.call();
-}
-static method main() → dynamic/Null {
- dynamic/self::Foo! {null,other} x;
- function inner() → dynamic/self::Foo! {other} {
- x = new self::Foo::•();
- return new self::Foo::•();
- }
- self::useCallback(inner);
- dynamic/self::Bar! {other} _ = inner.call()._field;
-}

Powered by Google App Engine
This is Rietveld 408576698