MCPcopy Index your code
hub / github.com/benfry/processing4 / visit

Method visit

java/src/processing/mode/java/ASTUtils.java:90–94  ·  view source on GitHub ↗
(SimpleName simpleName)

Source from the content-addressed store, hash-verified

88 List<SimpleName> simpleNames = new ArrayList<>();
89 node.accept(new ASTVisitor() {
90 @Override
91 public boolean visit(SimpleName simpleName) {
92 simpleNames.add(simpleName);
93 return super.visit(simpleName);
94 }
95 });
96 return simpleNames;
97 }

Callers

nothing calls this directly

Calls 4

resolveBindingMethod · 0.95
getKeyMethod · 0.80
addMethod · 0.45
equalsMethod · 0.45

Tested by

no test coverage detected