fix(compiler): support more than 9 interpolations (#12710)
Fixes #10253
This commit is contained in:

committed by
vikerman

parent
d8f23f4b7f
commit
22c021c57f
@ -64,7 +64,7 @@ export class _View_TreeComponent0 implements FtlView<import3.TreeComponent> {
|
||||
this._el_0.style.backgroundColor = currVal_0;
|
||||
this._expr_0 = currVal_0;
|
||||
}
|
||||
const currVal_1: any = import4.interpolate(1, ' ', this.context.data.value, ' ');
|
||||
const currVal_1: any = import4.inlineInterpolate(1, ' ', this.context.data.value, ' ');
|
||||
if (import4.checkBinding(throwOnChange, this._expr_1, currVal_1)) {
|
||||
this._text_1.nodeValue = currVal_1;
|
||||
this._expr_1 = currVal_1;
|
||||
|
@ -65,7 +65,7 @@ export class View_TreeTreeComponent {
|
||||
this._el_0.style.backgroundColor = currVal_0;
|
||||
this._expr_0 = currVal_0;
|
||||
}
|
||||
const currVal_1: any = import4.interpolate(1, ' ', this.context.data.value, ' ');
|
||||
const currVal_1: any = import4.inlineInterpolate(1, ' ', this.context.data.value, ' ');
|
||||
if (import4.checkBinding(throwOnChange, this._expr_1, currVal_1)) {
|
||||
this._text_1.nodeValue = currVal_1;
|
||||
this._expr_1 = currVal_1;
|
||||
|
@ -47,7 +47,7 @@ export class View_TreeLeafComponent {
|
||||
this._el_0.style.backgroundColor = currVal_0;
|
||||
this._expr_0 = currVal_0;
|
||||
}
|
||||
const currVal_1: any = import4.interpolate(1, ' ', this.context.data.value, ' ');
|
||||
const currVal_1: any = import4.inlineInterpolate(1, ' ', this.context.data.value, ' ');
|
||||
if (import4.checkBinding(throwOnChange, this._expr_1, currVal_1)) {
|
||||
this._text_1.nodeValue = currVal_1;
|
||||
this._expr_1 = currVal_1;
|
||||
|
Reference in New Issue
Block a user