| Index: test/codegen/expect/DeltaBlue.js
|
| diff --git a/test/codegen/expect/DeltaBlue.js b/test/codegen/expect/DeltaBlue.js
|
| index 64c6154632a1b6b938da7ab555b69affbf15c1f5..54ab0a9178d670ca719fb7c70187304c4540f112 100644
|
| --- a/test/codegen/expect/DeltaBlue.js
|
| +++ b/test/codegen/expect/DeltaBlue.js
|
| @@ -139,9 +139,9 @@ var core = dart.import(core);
|
| let BACKWARD = 0;
|
| class BinaryConstraint extends Constraint {
|
| BinaryConstraint(v1, v2, strength) {
|
| + this.direction = NONE;
|
| this.v1 = v1;
|
| this.v2 = v2;
|
| - this.direction = NONE;
|
| super.Constraint(strength);
|
| this.addConstraint();
|
| }
|
| @@ -245,11 +245,11 @@ var core = dart.import(core);
|
| class Variable extends core.Object {
|
| Variable(name, value) {
|
| this.constraints = dart.setType([], core.List$(Constraint));
|
| + this.walkStrength = WEAKEST;
|
| this.name = name;
|
| this.value = value;
|
| this.determinedBy = null;
|
| this.mark = 0;
|
| - this.walkStrength = WEAKEST;
|
| this.stay = true;
|
| }
|
| addConstraint(c) {
|
|
|