buildFromMethod method
Builds a CFG from a method declaration.
Implementation
ControlFlowGraph buildFromMethod(MethodDeclaration node) {
return _build(node.name.lexeme, node.body);
}
Builds a CFG from a method declaration.
ControlFlowGraph buildFromMethod(MethodDeclaration node) {
return _build(node.name.lexeme, node.body);
}