MCPcopy Index your code
hub / github.com/angular/angular / ɵɵstoreLet

Function ɵɵstoreLet

packages/core/src/render3/instructions/let_declaration.ts:44–50  ·  view source on GitHub ↗
(value: T)

Source from the content-addressed store, hash-verified

42 * @codeGenApi
43 */
44export 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.

Callers

nothing calls this directly

Calls 4

getTViewFunction · 0.90
getLViewFunction · 0.90
getSelectedIndexFunction · 0.90
storeFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…