| OLD | NEW |
| 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 // |
| 8 // See critical_edge_test.dart for a description of the problem. |
| 7 | 9 |
| 8 import "package:expect/expect.dart"; | 10 import "package:expect/expect.dart"; |
| 9 | 11 |
| 10 String parse(String uri) { | 12 String parse(String uri) { |
| 11 int index = 0; | 13 int index = 0; |
| 12 int char = -1; | 14 int char = -1; |
| 13 | 15 |
| 14 void parseAuth() { | 16 void parseAuth() { |
| 15 index; | 17 index; |
| 16 char; | 18 char; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 27 index++; | 29 index++; |
| 28 } | 30 } |
| 29 | 31 |
| 30 print(char); | 32 print(char); |
| 31 return "bad"; | 33 return "bad"; |
| 32 } | 34 } |
| 33 | 35 |
| 34 main() { | 36 main() { |
| 35 Expect.equals("good", parse("dart:_foreign_helper")); | 37 Expect.equals("good", parse("dart:_foreign_helper")); |
| 36 } | 38 } |
| OLD | NEW |