ruff/crates/ruff_python_parser/src
Charlie Marsh 96d310fbab
Remove `Stmt::TryStar` (#6566)
## Summary

Instead, we set an `is_star` flag on `Stmt::Try`. This is similar to the
pattern we've migrated towards for `Stmt::For` (removing
`Stmt::AsyncFor`) and friends. While these are significant differences
for an interpreter, we tend to handle these cases identically or nearly
identically.

## Test Plan

`cargo test`
2023-08-14 13:39:44 -04:00
..
lexer Pull in RustPython parser (#6099) 2023-07-27 09:29:11 +00:00
snapshots Remove `Stmt::TryStar` (#6566) 2023-08-14 13:39:44 -04:00
context.rs Remove `Parse` trait (#6235) 2023-08-01 18:35:03 +02:00
function.rs Introduce an `Arguments` AST node for function calls and class definitions (#6259) 2023-08-02 10:01:13 -04:00
lexer.rs Rename `Magic*` to `IpyEscape*` (#6395) 2023-08-09 13:28:18 +00:00
lib.rs Use `Jupyter` mode while parsing Notebook files (#5552) 2023-08-05 00:32:07 +00:00
parser.rs Remove `allow(pedantic)` from formatter (#6549) 2023-08-14 14:02:06 +02:00
python.lalrpop Remove `Stmt::TryStar` (#6566) 2023-08-14 13:39:44 -04:00
python.rs Remove `Stmt::TryStar` (#6566) 2023-08-14 13:39:44 -04:00
soft_keywords.rs Replace `.map_or(false, $closure)` with `.is_some_and(closure)` (#6244) 2023-08-01 19:29:42 +02:00
string.rs Add an implicit concatenation flag to string and bytes constants (#6512) 2023-08-14 13:46:54 +00:00
token.rs Rename `Magic*` to `IpyEscape*` (#6395) 2023-08-09 13:28:18 +00:00
typing.rs Replace `.map_or(false, $closure)` with `.is_some_and(closure)` (#6244) 2023-08-01 19:29:42 +02:00