| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| Cargo.toml | D | 22-Oct-2025 | 357 | 23 | 18 | |
| README.md | D | 22-Oct-2025 | 352 | 7 | 5 | |
| main.rs | D | 22-Oct-2025 | 93 | 5 | 2 | |
| parse.rs | D | 22-Oct-2025 | 370 | 17 | 14 |
README.md
1A little project skeleton for troubleshooting Syn's parsers during development, 2especially when adding support for new Rust syntax. 3 4Place a sample of the syntax you are working on into main.rs and then run `cargo 5check` to try parsing it, revealing the resulting syntax tree or else showing 6the position and error message if the input fails to parse. 7