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

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

Issue 1011153002: js: fix core.Object, output order, static const fields (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 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: test/codegen/expect/DeltaBlue.js
diff --git a/test/codegen/expect/DeltaBlue.js b/test/codegen/expect/DeltaBlue.js
index 3487677ea32ede5b8b7218b101056fdb0840767a..9d0693b81b0f252784492243e081a43566037452 100644
--- a/test/codegen/expect/DeltaBlue.js
+++ b/test/codegen/expect/DeltaBlue.js
@@ -14,7 +14,7 @@ var DeltaBlue;
projectionTest(100);
}
}
- class Strength extends dart.Object {
+ class Strength extends core.Object {
Strength(value, name) {
this.value = value;
this.name = name;
@@ -42,7 +42,7 @@ var DeltaBlue;
let NORMAL = new Strength(4, "normal");
let WEAK_DEFAULT = new Strength(5, "weakDefault");
let WEAKEST = new Strength(6, "weakest");
- class Constraint extends dart.Object {
+ class Constraint extends core.Object {
Constraint(strength) {
this.strength = strength;
}
@@ -240,7 +240,7 @@ var DeltaBlue;
this.output().value = this.input().value;
}
}
- class Variable extends dart.Object {
+ class Variable extends core.Object {
Variable(name, value) {
this.constraints = new List.from([]);
this.name = name;
@@ -259,7 +259,7 @@ var DeltaBlue;
this.determinedBy = null;
}
}
- class Planner extends dart.Object {
+ class Planner extends core.Object {
Planner() {
this.currentMark = 0;
}
@@ -355,7 +355,7 @@ var DeltaBlue;
}
}
}
- class Plan extends dart.Object {
+ class Plan extends core.Object {
Plan() {
this.list = new List.from([]);
}

Powered by Google App Engine
This is Rietveld 408576698