Function: $noInline()
ts
function $noInline<T>(value: T): T;Suppress compile-time inlining of the wrapped call or reference.
The inline plugin emits a direct runtime call or reference for the wrapped target even when its declaration is tagged for inlining. Virtual declarations are erased from emitted output and cannot be referenced directly, so suppressing them fails the build. At runtime the helper returns the provided value unchanged.
Type Parameters
| Type Parameter |
|---|
T |
Parameters
| Parameter | Type | Description |
|---|---|---|
value | T | Call or reference to keep as a runtime access. |
Returns
T
Same value.