mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-04-05 18:15:49 +02:00
21 lines
602 B
Markdown
21 lines
602 B
Markdown
|
---
|
||
|
minutes: 20
|
||
|
---
|
||
|
|
||
|
# 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}}
|
||
|
```
|