(
arg1: string | { [id: string]: AssignValue },
arg2?: AssignValue
)
| 1520 | |
| 1521 | // Nesting stays `min()`: if an enclosing span's deadline is already at or |
| 1522 | // before our own, it remains the effective one (and keeps its owner); |
| 1523 | // otherwise this span's deadline wins. |
| 1524 | const frame = |
| 1525 | prevFrame !== undefined && prevFrame.at <= own |
| 1526 | ? { at: prevFrame.at, owner: prevFrame.owner, spans } |
| 1527 | : { at: own, owner: label, spans }; |
| 1528 | |
| 1529 | this._runtimeState.deadlineFrame = frame; |
| 1530 | try { |
no outgoing calls