(targets)
| 45 | * @constructor |
| 46 | */ |
| 47 | const Build = function (targets) { |
| 48 | checkIsDevMode() |
| 49 | this.targets_ = targets |
| 50 | } |
| 51 | |
| 52 | /** @private {boolean} */ |
| 53 | Build.prototype.cacheResults_ = false |
nothing calls this directly
no test coverage detected