David Tolnay | 18c081f | 2019-04-29 14:13:30 -0700 | [diff] [blame^] | 1 | A little project skeleton for troubleshooting Syn's parsers during development, |
2 | especially when adding support for new Rust syntax. | ||||
3 | |||||
4 | Place a sample of the syntax you are working on into main.rs and then run `cargo | ||||
5 | check` to try parsing it, revealing the resulting syntax tree or else showing | ||||
6 | the position and error message if the input fails to parse. |