MCPcopy Create free account
hub / github.com/GraphLite-AI/GraphLite / print_from_graph_expression

Function print_from_graph_expression

graphlite/src/ast/pretty_printer.rs:675–683  ·  view source on GitHub ↗
(graph_expr: &FromGraphExpression, indent: usize)

Source from the content-addressed store, hash-verified

673}
674
675fn 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
685fn print_graph_expression(graph_expr: &GraphExpression, indent: usize) {
686 match graph_expr {

Callers 1

print_from_clauseFunction · 0.85

Calls 2

print_graph_expressionFunction · 0.85
print_match_clauseFunction · 0.85

Tested by

no test coverage detected