(object)
| 428 | } |
| 429 | |
| 430 | function getOrSetAsyncId(object) { |
| 431 | if (ObjectPrototypeHasOwnProperty(object, async_id_symbol)) { |
| 432 | return object[async_id_symbol]; |
| 433 | } |
| 434 | |
| 435 | return object[async_id_symbol] = newAsyncId(); |
| 436 | } |
| 437 | |
| 438 | |
| 439 | // Return the triggerAsyncId meant for the constructor calling it. It's up to |
no test coverage detected
searching dependent graphs…