(value: T)
| 42 | * @codeGenApi |
| 43 | */ |
| 44 | export function ɵɵstoreLet<T>(value: T): T { |
| 45 | const tView = getTView(); |
| 46 | const lView = getLView(); |
| 47 | const index = getSelectedIndex(); |
| 48 | store(tView, lView, index, value); |
| 49 | return value; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Retrieves the value of a `@let` declaration defined in a parent view. |
nothing calls this directly
no test coverage detected
searching dependent graphs…