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

Unified Diff: pkg/front_end/testcases/DeltaBlue.dart.outline.expect

Issue 2908453002: Infer the types of initializing formals from the corresponding fields. (Closed)
Patch Set: Created 3 years, 7 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/front_end/testcases/DeltaBlue.dart.outline.expect
diff --git a/pkg/front_end/testcases/DeltaBlue.dart.outline.expect b/pkg/front_end/testcases/DeltaBlue.dart.outline.expect
index a850da395fe286cca349da6cb7115a5e818f781c..e97314d9d87deb084af7086fe7b60836443ba657 100644
--- a/pkg/front_end/testcases/DeltaBlue.dart.outline.expect
+++ b/pkg/front_end/testcases/DeltaBlue.dart.outline.expect
@@ -11,7 +11,7 @@ class DeltaBlue extends core::Object {
class Strength extends core::Object {
final field core::int value;
final field core::String name;
- const constructor •(dynamic value, dynamic name) → void
+ const constructor •(core::int value, core::String name) → void
;
method nextWeaker() → self::Strength
;
@@ -26,7 +26,7 @@ class Strength extends core::Object {
}
abstract class Constraint extends core::Object {
final field self::Strength strength;
- const constructor •(dynamic strength) → void
+ const constructor •(self::Strength strength) → void
;
abstract method isSatisfied() → core::bool;
abstract method markUnsatisfied() → void;
@@ -50,7 +50,7 @@ abstract class Constraint extends core::Object {
abstract class UnaryConstraint extends self::Constraint {
final field self::Variable myOutput;
field core::bool satisfied;
- constructor •(dynamic myOutput, self::Strength strength) → void
+ constructor •(self::Variable myOutput, self::Strength strength) → void
;
method addToGraph() → void
;
@@ -89,7 +89,7 @@ abstract class BinaryConstraint extends self::Constraint {
field self::Variable v1;
field self::Variable v2;
field core::int direction;
- constructor •(dynamic v1, dynamic v2, self::Strength strength) → void
+ constructor •(self::Variable v1, self::Variable v2, self::Strength strength) → void
;
method chooseMethod(core::int mark) → void
;
@@ -115,7 +115,7 @@ abstract class BinaryConstraint extends self::Constraint {
class ScaleConstraint extends self::BinaryConstraint {
final field self::Variable scale;
final field self::Variable offset;
- constructor •(self::Variable src, dynamic scale, dynamic offset, self::Variable dest, self::Strength strength) → void
+ constructor •(self::Variable src, self::Variable scale, self::Variable offset, self::Variable dest, self::Strength strength) → void
;
method addToGraph() → void
;
@@ -142,7 +142,7 @@ class Variable extends core::Object {
field core::bool stay;
field core::int value;
final field core::String name;
- constructor •(dynamic name, dynamic value) → void
+ constructor •(core::String name, core::int value) → void
;
method addConstraint(self::Constraint c) → void
;

Powered by Google App Engine
This is Rietveld 408576698