rust-analyzer/crates/parser
Yutaro Ohno e865d45904 fix: Recover from missing argument in call expressions
Previously, when parsing an argument list with a missing argument (e.g.,
`(a, , b)` in `foo(a, , b)`), the parser would stop upon an unexpected
token (at the second comma in the example), resulting in an incorrect
parse tree.

This commit improves error handling in such cases, ensuring a more
accurate parse tree is built.
2024-02-08 10:54:04 +01:00
..
src fix: Recover from missing argument in call expressions 2024-02-08 10:54:04 +01:00
test_data fix: Recover from missing argument in call expressions 2024-02-08 10:54:04 +01:00
Cargo.toml Merge commit '9d8889cdfcc3aa0302353fc988ed21ff9bc9925c' into sync-from-ra 2024-01-15 11:40:09 +02:00