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

Unified Diff: test/codegen/expect/DeltaBlue.js

Issue 1131143002: Angular workarounds (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Rebase on latest Created 5 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: 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) {

Powered by Google App Engine
This is Rietveld 408576698