Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(236)

Side by Side Diff: frog/tests/leg/src/TypeInferenceTest.dart

Issue 9035008: Do not generate at use site loop phis. It requires live analysis that we currently don't implement. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « frog/tests/leg/src/SsaPhiEliminatorTest.dart ('k') | frog/tests/leg_only/leg_only.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « frog/tests/leg/src/SsaPhiEliminatorTest.dart ('k') | frog/tests/leg_only/leg_only.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698