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

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

Issue 2976283002: Update expectations. (Closed)
Patch Set: Update compile.status. Created 3 years, 5 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
« no previous file with comments | « no previous file | pkg/front_end/testcases/compile.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/testcases/DeltaBlue.dart.direct.expect
diff --git a/pkg/front_end/testcases/DeltaBlue.dart.direct.expect b/pkg/front_end/testcases/DeltaBlue.dart.direct.expect
index edb8f835a7fb38d1ee5af9fe7539a5ef6de042ab..5fe6554f9bd33c942f7167603d068d4660006db7 100644
--- a/pkg/front_end/testcases/DeltaBlue.dart.direct.expect
+++ b/pkg/front_end/testcases/DeltaBlue.dart.direct.expect
@@ -3,7 +3,7 @@ import self as self;
import "dart:core" as core;
class DeltaBlue extends core::Object {
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
method run() → void {
@@ -194,19 +194,19 @@ class ScaleConstraint extends self::BinaryConstraint {
: self::ScaleConstraint::scale = scale, self::ScaleConstraint::offset = offset, super self::BinaryConstraint::•(src, dest, strength)
;
method addToGraph() → void {
- this.{=self::BinaryConstraint::addToGraph}();
+ super.{self::BinaryConstraint::addToGraph}();
this.scale.addConstraint(this);
this.offset.addConstraint(this);
}
method removeFromGraph() → void {
- this.{=self::BinaryConstraint::removeFromGraph}();
+ super.{self::BinaryConstraint::removeFromGraph}();
if(!this.scale.==(null))
this.scale.removeConstraint(this);
if(!this.offset.==(null))
this.offset.removeConstraint(this);
}
method markInputs(core::int mark) → void {
- this.{=self::BinaryConstraint::markInputs}(mark);
+ super.{self::BinaryConstraint::markInputs}(mark);
this.scale.mark = this.offset.mark = mark;
}
method execute() → void {
@@ -256,7 +256,7 @@ class Variable extends core::Object {
}
class Planner extends core::Object {
field core::int currentMark = 0;
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
method incrementalAdd(self::Constraint c) → void {
@@ -353,7 +353,7 @@ class Planner extends core::Object {
}
class Plan extends core::Object {
field core::List<self::Constraint> list = <self::Constraint>[];
- constructor •() → void
+ default constructor •() → void
: super core::Object::•()
;
method addConstraint(self::Constraint c) → void {
« no previous file with comments | « no previous file | pkg/front_end/testcases/compile.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698