()
| 440 | // the user to safeguard this call and make sure it's zero'd out when the |
| 441 | // constructor is complete. |
| 442 | function getDefaultTriggerAsyncId() { |
| 443 | const defaultTriggerAsyncId = async_id_fields[kDefaultTriggerAsyncId]; |
| 444 | // If defaultTriggerAsyncId isn't set, use the executionAsyncId |
| 445 | if (defaultTriggerAsyncId < 0) |
| 446 | return async_id_fields[kExecutionAsyncId]; |
| 447 | return defaultTriggerAsyncId; |
| 448 | } |
| 449 | |
| 450 | |
| 451 | function clearDefaultTriggerAsyncId() { |
no outgoing calls
no test coverage detected
searching dependent graphs…