| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // Test inlining of assignments in parameter passing. If [StringScanner.charAt] | 5 // Test inlining of assignments in parameter passing. If [StringScanner.charAt] |
| 6 // is inlined, the argument expresion [: ++byteOffset :] should not be | 6 // is inlined, the argument expresion [: ++byteOffset :] should not be |
| 7 // duplicated. | 7 // duplicated. |
| 8 | 8 |
| 9 class StringScanner { | 9 class StringScanner { |
| 10 static String string; | 10 static String string; |
| 11 int byteOffset = -1; | 11 int byteOffset = -1; |
| 12 | 12 |
| 13 int nextByte(foo) { | 13 int nextByte(foo) { |
| 14 if (foo) return -2; | 14 if (foo) return -2; |
| 15 return charAt(++byteOffset); | 15 return charAt(++byteOffset); |
| 16 } | 16 } |
| 17 | 17 |
| 18 static int charAt(index) | 18 static int charAt(index) |
| 19 => (string.length > index) ? string.charCodeAt(index) : -1; | 19 => (string.length > index) ? string.codeUnitAt(index) : -1; |
| 20 } | 20 } |
| 21 | 21 |
| 22 void main() { | 22 void main() { |
| 23 var scanner = new StringScanner(); | 23 var scanner = new StringScanner(); |
| 24 StringScanner.string = 'az9'; | 24 StringScanner.string = 'az9'; |
| 25 Expect.equals(0x61, scanner.nextByte(false)); // Expect a. | 25 Expect.equals(0x61, scanner.nextByte(false)); // Expect a. |
| 26 Expect.equals(0x7A, scanner.nextByte(false)); // Expect z. | 26 Expect.equals(0x7A, scanner.nextByte(false)); // Expect z. |
| 27 Expect.equals(0x39, scanner.nextByte(false)); // Expect 9. | 27 Expect.equals(0x39, scanner.nextByte(false)); // Expect 9. |
| 28 Expect.equals(-1, scanner.nextByte(false)); | 28 Expect.equals(-1, scanner.nextByte(false)); |
| 29 } | 29 } |
| OLD | NEW |