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

Side by Side Diff: tests/language/critical_edge2_test.dart

Issue 355623002: Fix test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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 | « no previous file | no next file » | 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 // This test broke dart2js. 5 // This test broke dart2js.
6 // A compiler must not construct a critical edge on this program. 6 // A compiler must not construct a critical edge on this program.
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 void parse(String uri) { 10 String parse(String uri) {
11 int index = 0; 11 int index = 0;
12 int char = -1; 12 int char = -1;
13 13
14 void parseAuth() { 14 void parseAuth() {
15 index; 15 index;
16 char; 16 char;
17 } 17 }
18 18
19 while (index < 1000) { 19 while (index < 1000) {
20 char = uri.codeUnitAt(index); 20 char = uri.codeUnitAt(index);
21 if (char == 1234) { 21 if (char == 1234) {
22 break; 22 break;
23 } 23 }
24 if (char == 0x3A) { 24 if (char == 0x3A) {
25 return "good"; 25 return "good";
26 } 26 }
27 index++; 27 index++;
28 } 28 }
29 29
30 print(char); 30 print(char);
31 return "bad"; 31 return "bad";
32 } 32 }
33 33
34 main() { 34 main() {
35 Expect.equals("good", parse("dart:_foreign_helper")); 35 Expect.equals("good", parse("dart:_foreign_helper"));
36 } 36 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698