(project)
| 7 | |
| 8 | class HostInfoCache { |
| 9 | constructor(project) { |
| 10 | this.project = project; |
| 11 | this._bundledPackageInfoCache = new Map(); |
| 12 | this._hostAddonInfoCache = new Map(); |
| 13 | this._lcaHostCache = new Map(); |
| 14 | } |
| 15 | |
| 16 | /** |
| 17 | * Given a path (calculated as part of `getHostAddonInfo`), return the correct |
nothing calls this directly
no outgoing calls
no test coverage detected