@deprecated Use `expr()` instead.
(
expr: NumericValue | ExpressionInput,
options?: {
form?: FormOption;
canonical?: CanonicalOptions;
structural?: boolean;
scope?: Scope | undefined;
}
)
| 1583 | */ |
| 1584 | get _deadlineFrame(): DeadlineFrame | undefined { |
| 1585 | return this._runtimeState.deadlineFrame; |
| 1586 | } |
| 1587 | |
| 1588 | /** @internal */ |
| 1589 | set _deadlineFrame(value: DeadlineFrame | undefined) { |
| 1590 | this._runtimeState.deadlineFrame = value; |
| 1591 | } |
| 1592 | |
| 1593 | /** @internal */ |
| 1594 | get _timeRemaining(): number { |
| 1595 | return this._runtimeState.timeRemaining; |
| 1596 | } |
| 1597 | |
| 1598 | /** Instrumentation counters for the auto-compilation of lazy-`Map` element |