findAllRuleNodes static method

List<ParseTree> findAllRuleNodes(
  1. ParseTree t,
  2. int ruleIndex
)

Implementation

static List<ParseTree> findAllRuleNodes(ParseTree t, int ruleIndex) {
  return findAllNodes(t, ruleIndex, false);
}