( lView: LView, prefix: string, v0: any, i0: string, v1: any, i1: string, v2: any, suffix = '', )
| 89 | * Creates an interpolation binding with 3 expressions. |
| 90 | */ |
| 91 | export function interpolation3( |
| 92 | lView: LView, |
| 93 | prefix: string, |
| 94 | v0: any, |
| 95 | i0: string, |
| 96 | v1: any, |
| 97 | i1: string, |
| 98 | v2: any, |
| 99 | suffix = '', |
| 100 | ): string | NO_CHANGE { |
| 101 | const bindingIndex = getBindingIndex(); |
| 102 | const different = bindingUpdated3(lView, bindingIndex, v0, v1, v2); |
| 103 | incrementBindingIndex(3); |
| 104 | |
| 105 | return different |
| 106 | ? prefix + renderStringify(v0) + i0 + renderStringify(v1) + i1 + renderStringify(v2) + suffix |
| 107 | : NO_CHANGE; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * Create an interpolation binding with 4 expressions. |
no test coverage detected
searching dependent graphs…