renderExpressionsForTest method
Public helper for expression rendering without directive processing.
Useful for focused tests that validate output escaping behavior.
Implementation
String renderExpressionsForTest(
String template,
Map<String, dynamic> context, {
bool escapeOutput = true,
}) {
return _renderExpressions(template, context, escapeOutput);
}