fullName, interpreter.getConfiguration().getEncoding() );
ListOrderedMap blockList = new ListOrderedMap();
interpreter.assignRuntimeScope(JangodInterpreter.BLOCK_LIST, blockList, 1);
JangodInterpreter parent = interpreter.clone();
interpreter.assignRuntimeScope(JangodInterpreter.CHILD_FLAG, true, 1);
parent.assignRuntimeScope(JangodInterpreter.PARENT_FLAG, true, 1);
String semi = parent.render(node);
interpreter.assignRuntimeScope(JangodInterpreter.SEMI_RENDER, semi, 1);
return Constants.STR_BLANK;
} catch (IOException e) {
throw new InterpretException(e.getMessage());
}