dtolnay / syn

Parser for Rust source code
Apache License 2.0
2.78k stars 306 forks source link

Optimize the peek impl of Group and Lifetime #1687

Closed dtolnay closed 1 month ago

dtolnay commented 1 month ago

The Literal case is possible to optimize since https://github.com/dtolnay/syn/commit/66cb0c4381b0faaf1cf00f486f079338366461d5 (Cursor::lifetime), and the Group case since #1371 (Cursor::any_group). The original peek implementations pre-date those additions to the Cursor API.