()
| 5127 | } |
| 5128 | |
| 5129 | function throwErrorTolerant() { |
| 5130 | try { |
| 5131 | throwError.apply(null, arguments); |
| 5132 | } catch (e) { |
| 5133 | if (extra.errors) { |
| 5134 | extra.errors.push(e); |
| 5135 | } else { |
| 5136 | throw e; |
| 5137 | } |
| 5138 | } |
| 5139 | } |
| 5140 | |
| 5141 | |
| 5142 | // Throw an exception because of the token. |
no outgoing calls
no test coverage detected