( lView: LView, prefix: string, v0: any, suffix = '', )
| 58 | * @param suffix static value used for concatenation only. |
| 59 | */ |
| 60 | export function interpolation1( |
| 61 | lView: LView, |
| 62 | prefix: string, |
| 63 | v0: any, |
| 64 | suffix = '', |
| 65 | ): string | NO_CHANGE { |
| 66 | const different = bindingUpdated(lView, nextBindingIndex(), v0); |
| 67 | return different ? prefix + renderStringify(v0) + suffix : NO_CHANGE; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Creates an interpolation binding with 2 expressions. |
no test coverage detected
searching dependent graphs…