MCPcopy Index your code
hub / github.com/processing/processing / visit

Method visit

java/src/processing/mode/java/pdex/ASTUtils.java:91–95  ·  view source on GitHub ↗
(SimpleName simpleName)

Source from the content-addressed store, hash-verified

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

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