(&self)
| 405 | /// Print the callgraph in dot format. |
| 406 | #[allow(dead_code)] |
| 407 | pub fn dot(&self) { |
| 408 | println!( |
| 409 | "{:?}", |
| 410 | Dot::with_config(&self.graph, &[Config::GraphContentOnly]) |
| 411 | ); |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | /// Generate `ConstraintGraph` by visiting MIR body. |
nothing calls this directly
no outgoing calls
no test coverage detected