| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 #import("compiler_helper.dart"); | 5 #import("compiler_helper.dart"); |
| 6 | 6 |
| 7 final String TEST_ONE = @""" | 7 final String TEST_ONE = @""" |
| 8 sum(param0, param1) { | 8 sum(param0, param1) { |
| 9 var sum = 0; | 9 var sum = 0; |
| 10 for (var i = param0; i < param1; i += 1) sum = sum + i; | 10 for (var i = param0; i < param1; i += 1) sum = sum + i; |
| 11 return sum; | 11 return sum; |
| 12 } | 12 } |
| 13 """; | 13 """; |
| 14 | 14 |
| 15 String anyIdentifier = "[a-zA-Z][a-zA-Z0-9]*"; |
| 16 |
| 15 main() { | 17 main() { |
| 16 String generated = compile(TEST_ONE, 'sum'); | 18 String generated = compile(TEST_ONE, 'sum'); |
| 17 RegExp regexp = const RegExp("i = \\(i \\+ 1\\)"); | 19 RegExp regexp = new RegExp("i = \\($anyIdentifier \\+ 1\\)"); |
| 18 Expect.isTrue(regexp.hasMatch(generated)); | 20 Expect.isTrue(regexp.hasMatch(generated)); |
| 19 | 21 |
| 20 regexp = const RegExp("sum = \\(sum \\+ i\\)"); | 22 regexp = new RegExp("sum = \\($anyIdentifier \\+ $anyIdentifier\\)"); |
| 21 Expect.isTrue(regexp.hasMatch(generated)); | 23 Expect.isTrue(regexp.hasMatch(generated)); |
| 22 | 24 |
| 23 regexp = const RegExp('guard\\\$num\\(param0\\)'); | 25 regexp = const RegExp('guard\\\$num\\(param0\\)'); |
| 24 Expect.isTrue(regexp.hasMatch(generated)); | 26 Expect.isTrue(regexp.hasMatch(generated)); |
| 25 | 27 |
| 26 regexp = const RegExp('guard\\\$num\\(param1\\)'); | 28 regexp = const RegExp('guard\\\$num\\(param1\\)'); |
| 27 Expect.isTrue(regexp.hasMatch(generated)); | 29 Expect.isTrue(regexp.hasMatch(generated)); |
| 28 } | 30 } |
| OLD | NEW |