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 Function get _compareNodes => | 7 Function get _compareNodes => |
8 compareBy((n) => n.getBeginToken().charOffset); | 8 compareBy((n) => n.getBeginToken().charOffset); |
9 | 9 |
10 typedef String _Renamer(Renamable renamable); | 10 typedef String _Renamer(Renamable renamable); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 /** | 61 /** |
62 * Renames only top-level elements that would let to ambiguity if not renamed. | 62 * Renames only top-level elements that would let to ambiguity if not renamed. |
63 */ | 63 */ |
64 void renamePlaceholders( | 64 void renamePlaceholders( |
65 Compiler compiler, | 65 Compiler compiler, |
66 PlaceholderCollector placeholderCollector, | 66 PlaceholderCollector placeholderCollector, |
67 Map<Node, String> renames, | 67 Map<Node, String> renames, |
68 Map<LibraryElement, String> imports, | 68 Map<LibraryElement, String> imports, |
69 Set<String> fixedMemberNames, | 69 Set<String> fixedMemberNames, |
70 bool cutDeclarationTypes, | 70 bool cutDeclarationTypes, |
71 {uniqueGlobalNaming: false}) { | 71 {bool uniqueGlobalNaming: false}) { |
72 final Map<LibraryElement, Map<String, String>> renamed | 72 final Map<LibraryElement, Map<String, String>> renamed |
73 = new Map<LibraryElement, Map<String, String>>(); | 73 = new Map<LibraryElement, Map<String, String>>(); |
74 | 74 |
75 renameNodes(Iterable<Node> nodes, renamer) { | 75 renameNodes(Iterable<Node> nodes, renamer) { |
76 for (Node node in sorted(nodes, _compareNodes)) { | 76 for (Node node in sorted(nodes, _compareNodes)) { |
77 renames[node] = renamer(node); | 77 renames[node] = renamer(node); |
78 } | 78 } |
79 } | 79 } |
80 | 80 |
81 sortedForEach(Map<Element, dynamic> map, f) { | 81 sortedForEach(Map<Element, dynamic> map, f) { |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 index ~/= firstCharAlphabet.length; | 349 index ~/= firstCharAlphabet.length; |
350 int length = otherCharsAlphabet.length; | 350 int length = otherCharsAlphabet.length; |
351 while (index >= length) { | 351 while (index >= length) { |
352 resultBuilder.write(otherCharsAlphabet[index % length]); | 352 resultBuilder.write(otherCharsAlphabet[index % length]); |
353 index ~/= length; | 353 index ~/= length; |
354 } | 354 } |
355 resultBuilder.write(otherCharsAlphabet[index]); | 355 resultBuilder.write(otherCharsAlphabet[index]); |
356 return resultBuilder.toString(); | 356 return resultBuilder.toString(); |
357 } | 357 } |
358 } | 358 } |
OLD | NEW |