pub fn pass_expr(
writer: &mut impl Write,
expr: &Expr,
indent: usize,
) -> Result<()>
Expand description
Prints an Expr node.
§Arguments
writer
: The Write
r to write to.
expr
: The Expr to traverse.
indent
: The current base indent of all new lines to write.
§Returns
Nothing, but does print it.