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