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

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

Issue 1437373002: dart2js cps: Add CharCodeAt builtin. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « pkg/compiler/lib/src/types/type_mask.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // Tests for constant folding and lowering String.codeUnitAt.
6
7 library basic_tests;
8
9 import 'js_backend_cps_ir.dart';
10
11 const List<TestEntry> tests = const [
12
13 // Constant folding.
14 const TestEntry(r"""
15 main() {
16 print('A'.codeUnitAt(0));
17 }""",r"""
18 function() {
19 P.print(65);
20 }"""),
21
22
23 // Bounds checking.
24 const TestEntry.forMethod('function(foo)',
25 r"""
26 foo(s) {
27 var sum = 0;
28 for (int i = 0; i < s.length; i++) sum += s.codeUnitAt(i);
29 return sum;
30 }
31 main() {
32 print(foo('ABC'));
33 print(foo('Hello'));
34 }""",r"""
35 function(s) {
36 var v0 = s.length, sum = 0, i = 0;
37 for (; i < v0; sum = sum + s.charCodeAt(i), i = i + 1)
38 ;
39 return sum;
40 }"""),
41 ];
42
43
44 void main() {
45 runTests(tests);
46 }
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/types/type_mask.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698