use of pcgen.base.formula.visitor.DependencyVisitor in project pcgen by PCGen.
the class AbstractFormulaTestCase method getVariables.
protected List<VariableID<?>> getVariables(SimpleNode node) {
DependencyManager fdm = generateDependencyManager(getFormulaManager(), getGlobalScopeInst(), null);
new DependencyVisitor().visit(node, fdm);
return fdm.getVariables();
}
use of pcgen.base.formula.visitor.DependencyVisitor in project pcgen by PCGen.
the class AbstractFormulaTestCase method getVariables.
protected List<VariableID<?>> getVariables(SimpleNode node) {
DependencyManager fdm = managerFactory.generateDependencyManager(getFormulaManager(), getGlobalScopeInst(), null);
new DependencyVisitor().visit(node, fdm);
return fdm.getVariables();
}
Aggregations