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

Method getRoot

java/org/apache/jasper/compiler/Node.java:435–441  ·  view source on GitHub ↗

Returns the root node of the parse tree. @return The root node

()

Source from the content-addressed store, hash-verified

433 * @return The root node
434 */
435 public Node.Root getRoot() {
436 Node n = this;
437 while (!(n instanceof Node.Root)) {
438 n = n.getParent();
439 }
440 return (Node.Root) n;
441 }
442
443 /**
444 * Returns the name of the inner class for this node.

Callers 15

PageDataImplMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
comparePageEncodingsMethod · 0.45
compareTagEncodingsMethod · 0.45
checkXmlAttributesMethod · 0.45
getJspAttributeMethod · 0.45
isExpressionMethod · 0.45
visitMethod · 0.45
validateExDirectivesMethod · 0.45

Calls 1

getParentMethod · 0.95

Tested by

no test coverage detected