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

Method parseInclude

java/org/apache/jasper/compiler/Parser.java:794–801  ·  view source on GitHub ↗
(Node parent)

Source from the content-addressed store, hash-verified

792 * JspBodyParam ::= S? '>' Param* '</jsp:body>'
793 */
794 private void parseInclude(Node parent) throws JasperException {
795 Attributes attrs = parseAttributes();
796 reader.skipSpaces();
797
798 Node includeNode = new Node.IncludeAction(attrs, start, parent);
799
800 parseOptionalBody(includeNode, "jsp:include", JAVAX_BODY_CONTENT_PARAM);
801 }
802
803 /*
804 * For Forward: StdActionContent ::= Attributes ParamBody

Callers 1

parseStandardActionMethod · 0.95

Calls 3

parseAttributesMethod · 0.95
parseOptionalBodyMethod · 0.95
skipSpacesMethod · 0.45

Tested by

no test coverage detected