Chromium Code Reviews| 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 foo(j) { |
| 9 var sum = 0; | 9 var a = [1, 2, 3]; |
| 10 for (var i = param0; i < param1; i += 1) sum = sum + i; | 10 if (j < 0) j = 0; |
| 11 return sum; | 11 for (var i = j; i < 3; i++) { |
| 12 a[i]; | |
| 13 } | |
| 12 } | 14 } |
| 13 """; | 15 """; |
| 14 | 16 |
| 15 main() { | 17 main() { |
| 16 String generated = compile(TEST_ONE, 'sum'); | 18 String generated = compile(TEST_ONE, 'foo'); |
| 17 regexp = const RegExp("typeof param0 !== 'number'"); | 19 print(generated); |
|
kasperl
2012/04/23 05:48:30
Remove printing.
floitsch
2012/04/23 09:21:05
Done.
| |
| 20 | |
| 21 Expect.isFalse(generated.contains('iae')); | |
|
kasperl
2012/04/23 05:48:30
Add comment. What are you testing for?
floitsch
2012/04/23 09:21:05
Done.
| |
| 22 RegExp regexp = new RegExp(getIntTypeCheck('j0')); | |
| 18 Expect.isTrue(regexp.hasMatch(generated)); | 23 Expect.isTrue(regexp.hasMatch(generated)); |
| 19 } | 24 } |
| OLD | NEW |