toSsa method
Converts this CFG to SSA form.
parameters is an optional list of function parameters that should be
initialized with version 0 in the entry block.
Implementation
ControlFlowGraph toSsa([List<Variable>? parameters]) {
final builder = SsaBuilder();
return builder.buildSsa(this, parameters);
}