* Method exists to assist stubbing in tests. * @param {string} name * @return {!ReplacementDef}
(name)
| 196 | * @return {!ReplacementDef} |
| 197 | */ |
| 198 | get(name) { |
| 199 | if (!this.initialized_) { |
| 200 | this.initialize_(); |
| 201 | } |
| 202 | |
| 203 | return this.replacements_[name]; |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Sets a synchronous value resolver for the variable with the specified name. |
nothing calls this directly
no test coverage detected