bindRenderText function
Implementation
void bindRenderText(
ir.Binding binding, CompileNode compileNode, CompileView? view) {
if (binding.source.isImmutable) {
// We already set the value to the text node at creation
return;
}
_directBinding(
binding,
BoundValueConverter.forView(view!),
view.detectChangesRenderPropertiesMethod,
o.THIS_EXPR,
compileNode.renderNode,
false,
);
}