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

Unified Diff: tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart

Issue 891673003: dart2js: Refactoring, documentation, and a few bugfixes in Namer class. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Typo and TODO about clash in named parameters Created 5 years, 11 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: tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart
index b807c29af41218c3047679df806bf16ac4edcbdb..d721af00bceb7adcacf13b13850ae8cb0d84633f 100644
--- a/tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart
+++ b/tests/compiler/dart2js/js_backend_cps_ir_constructor_test.dart
@@ -70,8 +70,8 @@ r"""
function(x, y) {
var v0;
v0 = new V.Sub(y, x);
- v0.Base0$0();
- v0.Sub$2(x, y);
+ v0.Base0();
+ v0.Sub(x, y);
return v0;
}"""),
@@ -102,9 +102,9 @@ function(x, y) {
box_0 = {};
box_0.x1_0 = x;
v0 = new V.Sub(y, new V.Base_closure(box_0));
- v0.Base0$0();
- v0.Base$1(box_0);
- v0.Sub$2(x, y);
+ v0.Base0();
+ v0.Base(box_0);
+ v0.Sub(x, y);
return v0;
}"""),

Powered by Google App Engine
This is Rietveld 408576698