()
| 1862 | } |
| 1863 | |
| 1864 | function throwErrorTolerant() { |
| 1865 | try { |
| 1866 | throwError.apply(null, arguments); |
| 1867 | } catch (e) { |
| 1868 | if (extra.errors) { |
| 1869 | extra.errors.push(e); |
| 1870 | } else { |
| 1871 | throw e; |
| 1872 | } |
| 1873 | } |
| 1874 | } |
| 1875 | |
| 1876 | |
| 1877 | // Throw an exception because of the token. |
no outgoing calls
no test coverage detected