1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-03 10:06:14 +02:00

21 lines
602 B
Markdown
Raw Normal View History

---
minutes: 30
---
# Exercise: Rewriting with Result
The following implements a very simple parser for an expression language.
However, it handles errors by panicking. Rewrite it to instead use idiomatic
error handling and propagate errors to a return from `main`. Feel free to use
`thiserror` and `anyhow`.
HINT: start by fixing error handling in the `parse` function. Once that is
working correctly, update `Tokenizer` to implement
`Iterator<Item=Result<Token, TokenizerError>>` and handle that in the parser.
```rust,editable
{{#include exercise.rs:types}}
{{#include exercise.rs:panics}}
```