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

Method parseGetProperty

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

Source from the content-addressed store, hash-verified

843 * For GetProperty: StdActionContent ::= Attributes EmptyBody
844 */
845 private void parseGetProperty(Node parent) throws JasperException {
846 Attributes attrs = parseAttributes();
847 reader.skipSpaces();
848
849 Node getPropertyNode = new Node.GetProperty(attrs, start, parent);
850
851 parseOptionalBody(getPropertyNode, "jsp:getProperty", TagInfo.BODY_CONTENT_EMPTY);
852 }
853
854 /*
855 * For SetProperty: StdActionContent ::= Attributes EmptyBody

Callers 1

parseStandardActionMethod · 0.95

Calls 3

parseAttributesMethod · 0.95
parseOptionalBodyMethod · 0.95
skipSpacesMethod · 0.45

Tested by

no test coverage detected