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

Method parseIncludeDirective

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

Source from the content-addressed store, hash-verified

350 * Parses an include directive with the following syntax: IncludeDirective ::= ( S Attribute)*
351 */
352 private void parseIncludeDirective(Node parent) throws JasperException {
353 Attributes attrs = parseAttributes();
354
355 // Included file expanded here
356 Node includeNode = new Node.IncludeDirective(attrs, start, parent);
357 processIncludeDirective(attrs.getValue("file"), includeNode);
358 }
359
360 /**
361 * Add a list of files. This is used for implementing include-prelude and include-coda of jsp-config element in

Callers 2

parseDirectiveMethod · 0.95
parseXMLDirectiveMethod · 0.95

Calls 3

parseAttributesMethod · 0.95
getValueMethod · 0.65

Tested by

no test coverage detected