MCPcopy Create free account
hub / github.com/apache/tomcat / visit

Method visit

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

Visit the nodes in the list with the supplied visitor @param v The visitor used @throws JasperException if an error occurs while visiting a node

(Visitor v)

Source from the content-addressed store, hash-verified

2772 * @throws JasperException if an error occurs while visiting a node
2773 */
2774 public void visit(Visitor v) throws JasperException {
2775 for (Node n : list) {
2776 n.accept(v);
2777 }
2778 }
2779
2780 /**
2781 * Returns the number of nodes in this collection.

Callers 1

doTestParserMethod · 0.95

Calls 1

acceptMethod · 0.65

Tested by 1

doTestParserMethod · 0.76