use of org.evosuite.graphs.ccfg.CCFGCodeNode in project evosuite by EvoSuite.
the class AllUsesAnalysis method handleFieldCallNode.
private void handleFieldCallNode(CCFGMethodEntryNode investigatedMethod, CCFGNode node, Stack<MethodCall> callStack, Set<Map<String, VariableDefinition>> activeDefs, Set<BytecodeInstruction> freeUses, Set<DefUseCoverageTestFitness> foundPairs) {
BytecodeInstruction code = ((CCFGCodeNode) node).getCodeInstruction();
// LoggingUtils.getEvoLogger().debug(
// "Processing field call: " + node.toString());
handleDefUse(investigatedMethod, code, callStack, activeDefs, freeUses, foundPairs);
}
use of org.evosuite.graphs.ccfg.CCFGCodeNode in project evosuite by EvoSuite.
the class AllUsesAnalysis method handleCodeNode.
private void handleCodeNode(CCFGMethodEntryNode investigatedMethod, CCFGNode node, Stack<MethodCall> callStack, Set<Map<String, VariableDefinition>> activeDefs, Set<BytecodeInstruction> freeUses, Set<DefUseCoverageTestFitness> foundPairs) {
BytecodeInstruction code = ((CCFGCodeNode) node).getCodeInstruction();
handleDefUse(investigatedMethod, code, callStack, activeDefs, freeUses, foundPairs);
}
Aggregations