(graph_expr: &FromGraphExpression, indent: usize)
| 673 | } |
| 674 | |
| 675 | fn print_from_graph_expression(graph_expr: &FromGraphExpression, indent: usize) { |
| 676 | debug!("{}Graph Expression", get_indent(indent)); |
| 677 | print_graph_expression(&graph_expr.graph_expression, indent + 1); |
| 678 | |
| 679 | if let Some(match_clause) = &graph_expr.match_statement { |
| 680 | debug!("{}Match Clause", get_indent(indent)); |
| 681 | print_match_clause(match_clause, indent + 1); |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | fn print_graph_expression(graph_expr: &GraphExpression, indent: usize) { |
| 686 | match graph_expr { |
no test coverage detected