String code = _content.toString();
if (code.startsWith("<!--") && code.endsWith("-->")) {
code = code.substring(4, code.length() - 3);
}
parser.push(getParentStatement().getBlockStatement());
StatementParser p = new StatementParser(parser, getLocation(), code);
p.parseStatements();
parser.pop();
}