* @param ignoreMissingFile {@code true} if any FileNotFound error generated by the template
* loader should be ignored, {@code false} otherwise.
*/
private void include(PExpression expression, boolean ignoreMissingFile) {
// Evaluate expression.
Value path = expressionEvaluator.evaluate(expression);
String templateName = path.asString();
if (!context.pushIncludeStackEntry(templateName)) {
throw new JSilverInterpreterException(createIncludeLoopErrorMessage(templateName, context
.getIncludedTemplateNames()));
}