Write the CFG for this function to `w`.
(&self, w: &mut dyn Write)
| 26 | |
| 27 | /// Write the CFG for this function to `w`. |
| 28 | pub fn write(&self, w: &mut dyn Write) -> Result { |
| 29 | self.header(w)?; |
| 30 | self.block_nodes(w)?; |
| 31 | self.cfg_connections(w)?; |
| 32 | writeln!(w, "}}") |
| 33 | } |
| 34 | |
| 35 | fn header(&self, w: &mut dyn Write) -> Result { |
| 36 | writeln!(w, "digraph \"{}\" {{", self.func.name)?; |
no test coverage detected