(tag, ...args)
| 106 | * @param {...*} args |
| 107 | */ |
| 108 | export function devError(tag, ...args) { |
| 109 | const error = createError.apply(null, args); |
| 110 | // TODO(rcebulko): Determine if/how this Error#name property is used. |
| 111 | error.name = tag || error.name; |
| 112 | maybeReportError(error); |
| 113 | } |
| 114 | |
| 115 | /** |
| 116 | * Reports an error message and marks with an expected property. If the |
no test coverage detected