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

Side by Side Diff: tests/compiler/dart2js/js_backend_cps_ir_codeUnitAt_test.dart

Issue 1562893002: dart2js cps: Generate increment and compound operators. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Also compound string concatenation Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Tests for constant folding and lowering String.codeUnitAt. 5 // Tests for constant folding and lowering String.codeUnitAt.
6 6
7 library codeUnitAt_tests; 7 library codeUnitAt_tests;
8 8
9 import 'js_backend_cps_ir.dart'; 9 import 'js_backend_cps_ir.dart';
10 10
(...skipping 25 matching lines...) Expand all
36 var sum = 0; 36 var sum = 0;
37 for (int i = 0; i < s.length; i++) sum += s.codeUnitAt(i); 37 for (int i = 0; i < s.length; i++) sum += s.codeUnitAt(i);
38 return sum; 38 return sum;
39 } 39 }
40 main() { 40 main() {
41 print(foo('ABC')); 41 print(foo('ABC'));
42 print(foo('Hello')); 42 print(foo('Hello'));
43 }""",r""" 43 }""",r"""
44 function(s) { 44 function(s) {
45 var v0 = s.length, sum = 0, i = 0; 45 var v0 = s.length, sum = 0, i = 0;
46 for (; i < v0; sum = sum + s.charCodeAt(i), i = i + 1) 46 for (; i < v0; sum += s.charCodeAt(i), ++i)
47 ; 47 ;
48 return sum; 48 return sum;
49 }"""), 49 }"""),
50 ]; 50 ];
51 51
52 52
53 void main() { 53 void main() {
54 runTests(tests); 54 runTests(tests);
55 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698