(index: number)
| 25 | * @codeGenApi |
| 26 | */ |
| 27 | export function ɵɵdeclareLet(index: number): typeof ɵɵdeclareLet { |
| 28 | performanceMarkFeature('NgLet'); |
| 29 | const tView = getTView(); |
| 30 | const lView = getLView(); |
| 31 | const adjustedIndex = index + HEADER_OFFSET; |
| 32 | const tNode = getOrCreateTNode(tView, adjustedIndex, TNodeType.LetDeclaration, null, null); |
| 33 | setCurrentTNode(tNode, false); |
| 34 | store(tView, lView, adjustedIndex, UNINITIALIZED_LET); |
| 35 | return ɵɵdeclareLet; |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Instruction that stores the value of a `@let` declaration on the current view. |
nothing calls this directly
no test coverage detected
searching dependent graphs…