Reconstructs a placeholder expression from the text using the context’s prefix and suffix.
text
ctx.toPlaceholderText('host') // -> "#{host}"
String toPlaceholderText(String text) => prefix + text + suffix;