Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // This test broke dart2js. | |
| 6 // A compiler must not construct a critical edge on this program. | |
|
ngeoffray
2014/06/24 12:39:14
Maybe add a comment of the reason a critical edge
floitsch
2014/06/24 14:44:38
Added comment.
| |
| 7 | |
| 8 import "package:expect/expect.dart"; | |
| 9 | |
| 10 void parse(String uri) { | |
| 11 int index = 0; | |
| 12 int char = -1; | |
| 13 | |
| 14 void parseAuth() { | |
| 15 index; | |
| 16 char; | |
| 17 } | |
| 18 | |
| 19 while (index < 1000) { | |
| 20 char = uri.codeUnitAt(index); | |
| 21 if (char == 1234) { | |
| 22 break; | |
| 23 } | |
| 24 if (char == 0x3A) { | |
| 25 return "good"; | |
| 26 } | |
| 27 index++; | |
| 28 } | |
| 29 | |
| 30 print(char); | |
| 31 return "bad"; | |
| 32 } | |
| 33 | |
| 34 main() { | |
| 35 Expect.equals("good", parse("dart:_foreign_helper")); | |
|
ngeoffray
2014/06/24 12:39:14
Not very unit for a unit test :-) Seems like the l
floitsch
2014/06/24 14:44:38
I was not able to reduce the number of instruction
| |
| 36 } | |
| OLD | NEW |