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