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

Method parseForward

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

Source from the content-addressed store, hash-verified

804 * For Forward: StdActionContent ::= Attributes ParamBody
805 */
806 private void parseForward(Node parent) throws JasperException {
807 Attributes attrs = parseAttributes();
808 reader.skipSpaces();
809
810 Node forwardNode = new Node.ForwardAction(attrs, start, parent);
811
812 parseOptionalBody(forwardNode, "jsp:forward", JAVAX_BODY_CONTENT_PARAM);
813 }
814
815 private void parseInvoke(Node parent) throws JasperException {
816 Attributes attrs = parseAttributes();

Callers 1

parseStandardActionMethod · 0.95

Calls 3

parseAttributesMethod · 0.95
parseOptionalBodyMethod · 0.95
skipSpacesMethod · 0.45

Tested by

no test coverage detected