| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of dart_backend; | 5 part of dart_backend; |
| 6 | 6 |
| 7 Comparator get _compareNodes => | 7 Comparator get _compareNodes => |
| 8 compareBy((n) => n.getBeginToken().charOffset); | 8 compareBy((n) => n.getBeginToken().charOffset); |
| 9 | 9 |
| 10 abstract class Renamable implements Comparable { | 10 abstract class Renamable implements Comparable { |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 353 MinifyingGenerator(); | 353 MinifyingGenerator(); |
| 354 | 354 |
| 355 String generate(String originalName, bool isForbidden(String name)) { | 355 String generate(String originalName, bool isForbidden(String name)) { |
| 356 String result; | 356 String result; |
| 357 do { | 357 do { |
| 358 result = generateMiniId(index++); | 358 result = generateMiniId(index++); |
| 359 } while (isForbidden(result)); | 359 } while (isForbidden(result)); |
| 360 return result; | 360 return result; |
| 361 } | 361 } |
| 362 } | 362 } |
| OLD | NEW |