Skip to content

Commit 867d018

Browse files
committed
Control Flow helper top level javaDoc
1 parent 32bc0ca commit 867d018

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

spoon-control-flow/src/test/java/fr/inria/controlflow/ControlFlowPathHelper.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@
66
import java.util.List;
77
import java.util.Map;
88

9+
/**
10+
* A helper class for analyzing paths in the control flow graph
11+
*/
912
public class ControlFlowPathHelper {
1013
/**
1114
* Memoization of paths.
1215
*/
13-
Map<ControlFlowNode, List<List<ControlFlowNode>>> pathsMemo = new HashMap<>();
16+
private final Map<ControlFlowNode, List<List<ControlFlowNode>>> pathsMemo = new HashMap<>();
1417

1518
/**
1619
* Get the set of possible paths to the exit node from a given starting node.

0 commit comments

Comments
 (0)