()
| 67 | return id; |
| 68 | } |
| 69 | const wrapped = () => { |
| 70 | try { |
| 71 | callback(); |
| 72 | } catch (e) { |
| 73 | reportError(e); |
| 74 | throw e; |
| 75 | } |
| 76 | }; |
| 77 | const index = this.win.setTimeout(wrapped, opt_delay); |
| 78 | if (getMode().test) { |
| 79 | if (!timersForTesting) { |
nothing calls this directly
no test coverage detected