(source: &str)
| 661 | use sith_python_parser::{parse_unchecked, Mode}; |
| 662 | |
| 663 | fn parse_expr(source: &str) -> Expr { |
| 664 | *parse_unchecked(source, Mode::Expression) |
| 665 | .into_syntax() |
| 666 | .expression() |
| 667 | .unwrap() |
| 668 | .body |
| 669 | } |
| 670 | |
| 671 | #[test] |
| 672 | fn test_bool_op_expr_to_str() { |