pub fn expression_to_debug_tree(
expr: &Expression,
context: &TypeContext,
) -> ValueExpand description
Convert a FHIRPath expression AST to a JSON debug tree
The output format matches the structure expected by fhirpath-lab:
{
"ExpressionType": "BinaryExpression",
"Name": "|",
"Arguments": [...],
"ReturnType": "string[]"
}