Package org.sonar.plugins.python.api.cfg
Class ControlFlowGraph
- java.lang.Object
-
- org.sonar.plugins.python.api.cfg.ControlFlowGraph
-
public class ControlFlowGraph extends Object
-
-
Constructor Summary
Constructors Constructor Description ControlFlowGraph(Set<CfgBlock> blocks, CfgBlock start, CfgBlock end)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<CfgBlock>blocks()static ControlFlowGraphbuild(FileInput fileInput, PythonFile file)static ControlFlowGraphbuild(FunctionDef functionDef, PythonFile file)CfgBlockend()CfgBlockstart()StringtoString()
-
-
-
Method Detail
-
build
@CheckForNull public static ControlFlowGraph build(FunctionDef functionDef, PythonFile file)
-
build
@CheckForNull public static ControlFlowGraph build(FileInput fileInput, PythonFile file)
-
start
public CfgBlock start()
-
end
public CfgBlock end()
-
-