renderExpressionsForTest method

String renderExpressionsForTest(
  1. String template,
  2. Map<String, dynamic> context, {
  3. bool escapeOutput = true,
})

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);
}