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

Method parseUseBean

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

Source from the content-addressed store, hash-verified

891 * For UseBean: StdActionContent ::= Attributes OptionalBody
892 */
893 private void parseUseBean(Node parent) throws JasperException {
894 Attributes attrs = parseAttributes();
895 reader.skipSpaces();
896
897 Node useBeanNode = new Node.UseBean(attrs, start, parent);
898
899 parseOptionalBody(useBeanNode, "jsp:useBean", TagInfo.BODY_CONTENT_JSP);
900 }
901
902 /*
903 * Parses OptionalBody, but also reused to parse bodies for param since the syntax is identical (the only thing that

Callers 1

parseStandardActionMethod · 0.95

Calls 3

parseAttributesMethod · 0.95
parseOptionalBodyMethod · 0.95
skipSpacesMethod · 0.45

Tested by

no test coverage detected