| 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 part of dart2js.js_emitter.program_builder; | 5 part of dart2js.js_emitter.program_builder; |
| 6 | 6 |
| 7 /// Maps [LibraryElement]s to their [Element]s. | 7 /// Maps [LibraryElement]s to their [Element]s. |
| 8 /// | 8 /// |
| 9 /// Fundamentally, this class nicely encapsulates a | 9 /// Fundamentally, this class nicely encapsulates a |
| 10 /// `Map<LibraryElement, List<Element>>`. | 10 /// `Map<LibraryElement, List<Element>>`. |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 void registerConstant(OutputUnit outputUnit, ConstantValue constantValue) { | 112 void registerConstant(OutputUnit outputUnit, ConstantValue constantValue) { |
| 113 // Ignore for now. | 113 // Ignore for now. |
| 114 } | 114 } |
| 115 | 115 |
| 116 Holder registerHolder(String name) { | 116 Holder registerHolder(String name) { |
| 117 return _holdersMap.putIfAbsent( | 117 return _holdersMap.putIfAbsent( |
| 118 name, | 118 name, |
| 119 () => new Holder(name, _holdersMap.length)); | 119 () => new Holder(name, _holdersMap.length)); |
| 120 } | 120 } |
| 121 } | 121 } |
| OLD | NEW |