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

Method visitBody

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

Visit the body of a node, using the current visitor @param n The node to visit @throws JasperException if an error occurs while visiting the body

(Node n)

Source from the content-addressed store, hash-verified

2861 * @throws JasperException if an error occurs while visiting the body
2862 */
2863 protected void visitBody(Node n) throws JasperException {
2864 if (n.getBody() != null) {
2865 n.getBody().visit(this);
2866 }
2867 }
2868
2869 /**
2870 * Visits a root node.

Callers 15

visitMethod · 0.95
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
checkSeenMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
visitMethod · 0.45
doVisitMethod · 0.45

Calls 2

visitMethod · 0.65
getBodyMethod · 0.45

Tested by

no test coverage detected