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

Unified 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, 1 month 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 | « pkg/compiler/lib/src/types/type_mask.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/compiler/dart2js/js_backend_cps_ir_codeUnitAt_test.dart
diff --git a/tests/compiler/dart2js/js_backend_cps_ir_codeUnitAt_test.dart b/tests/compiler/dart2js/js_backend_cps_ir_codeUnitAt_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..b3f280880589ceaa5fb31f9c87c1f572f9be9a85
--- /dev/null
+++ b/tests/compiler/dart2js/js_backend_cps_ir_codeUnitAt_test.dart
@@ -0,0 +1,46 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// Tests for constant folding and lowering String.codeUnitAt.
+
+library basic_tests;
+
+import 'js_backend_cps_ir.dart';
+
+const List<TestEntry> tests = const [
+
+ // Constant folding.
+ const TestEntry(r"""
+main() {
+ print('A'.codeUnitAt(0));
+}""",r"""
+function() {
+ P.print(65);
+}"""),
+
+
+ // Bounds checking.
+ const TestEntry.forMethod('function(foo)',
+r"""
+foo(s) {
+ var sum = 0;
+ for (int i = 0; i < s.length; i++) sum += s.codeUnitAt(i);
+ return sum;
+}
+main() {
+ print(foo('ABC'));
+ print(foo('Hello'));
+}""",r"""
+function(s) {
+ var v0 = s.length, sum = 0, i = 0;
+ for (; i < v0; sum = sum + s.charCodeAt(i), i = i + 1)
+ ;
+ return sum;
+}"""),
+];
+
+
+void main() {
+ runTests(tests);
+}
« 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