* @param {!Array} args * @return {!Array} * @private
(args)
| 331 | * @private |
| 332 | */ |
| 333 | maybeExpandMessageArgs_(args) { |
| 334 | return isArray(args[0]) |
| 335 | ? this.expandMessageArgs_(/** @type {!Array} */ (args[0])) |
| 336 | : args; |
| 337 | } |
| 338 | |
| 339 | /** |
| 340 | * Either redirects a pair of (errorId, ...args) to a URL where the full |
no test coverage detected