| OLD | NEW |
| (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 } |
| OLD | NEW |