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

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

Issue 1214123003: dart2js cps: Ensure JSArray is emitted when we see a type cast. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Update output in test Created 5 years, 6 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 | « tests/co19/co19-dart2js.status ('k') | tests/compiler/dart2js_extra/dart2js_extra.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
index b6fc9ad354a9058b4f04c49cd009ce5abbd59141..b16a1a88966c779b110d0bb770a52b7401162a6e 100644
--- a/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
+++ b/tests/compiler/dart2js/js_backend_cps_ir_control_flow_test.dart
@@ -57,11 +57,11 @@ main() {
}""", """
function() {
var i = 0;
- L1:
+ L2:
while (P.identical(V.foo(true), true)) {
P.print(1);
if (P.identical(V.foo(false), true))
- break L1;
+ break L2;
asgerf 2015/07/03 12:00:34 Reason for change: Labels are currently numbered
i = V.foo(i);
}
P.print(2);
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | tests/compiler/dart2js_extra/dart2js_extra.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698