"{{/parse}}";
DefaultMustacheFactory mf = new DefaultMustacheFactory() {
public MustacheVisitor createMustacheVisitor() {
return new DefaultMustacheVisitor(this) {
public void iterable(final TemplateContext templateContext, String variable, Mustache mustache) {
list.add(new IterableCode(templateContext, df, mustache, variable) {
Binding binding = oh.createBinding("params", templateContext, this);
protected Writer handleFunction(Writer writer, Function function, Object[] scopes) {
return super.handleFunction(writer, function, addScope(scopes, binding.get(scopes)));
}
});