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

Method skipUntilETag

java/org/apache/jasper/compiler/JspReader.java:468–477  ·  view source on GitHub ↗

Skip until the given end tag is matched in the stream. When returned, the context is positioned past the end of the tag. @param tag The name of the tag whose ETag (&lt;/tag>) to match. @return A non-null Mark instance (positioned immediately before the ETag) if found, <str

(String tag)

Source from the content-addressed store, hash-verified

466 * <strong>null</strong> otherwise.
467 */
468 Mark skipUntilETag(String tag) {
469 Mark ret = skipUntil("</" + tag);
470 if (ret != null) {
471 skipSpaces();
472 if (nextChar() != '>') {
473 ret = null;
474 }
475 }
476 return ret;
477 }
478
479 /**
480 * Parse ELExpressionBody that is a body of ${} or #{} expression. Initial reader position is expected to be just

Callers 1

parseTagDependentBodyMethod · 0.80

Calls 3

skipUntilMethod · 0.95
skipSpacesMethod · 0.95
nextCharMethod · 0.95

Tested by

no test coverage detected