* loader should be ignored, {@code false} otherwise.
* @param context Rendering context to use for the included template.
*/
protected void include(String templateName, boolean ignoreMissingFile, RenderingContext context) {
if (!context.pushIncludeStackEntry(templateName)) {
throw new JSilverInterpreterException(createIncludeLoopErrorMessage(templateName, context
.getIncludedTemplateNames()));
}
loadAndRenderIncludedTemplate(templateName, ignoreMissingFile, context);