MCPcopy Index your code
hub / github.com/apache/tomcat / parseTagDependentBody

Method parseTagDependentBody

java/org/apache/jasper/compiler/Parser.java:1431–1439  ·  view source on GitHub ↗

TagDependentBody :=

(Node parent, String tag)

Source from the content-addressed store, hash-verified

1429 * TagDependentBody :=
1430 */
1431 private void parseTagDependentBody(Node parent, String tag) throws JasperException {
1432 Mark bodyStart = reader.mark();
1433 Mark bodyEnd = reader.skipUntilETag(tag);
1434 if (bodyEnd == null) {
1435 err.jspError(start, "jsp.error.unterminated", "<" + tag);
1436 }
1437 @SuppressWarnings("unused")
1438 Node unused = new Node.TemplateText(reader.getText(bodyStart, bodyEnd), bodyStart, parent);
1439 }
1440
1441 /*
1442 * Parses jsp:body action.

Callers 1

parseBodyMethod · 0.95

Calls 4

skipUntilETagMethod · 0.80
jspErrorMethod · 0.65
markMethod · 0.45
getTextMethod · 0.45

Tested by

no test coverage detected