chumsky icon indicating copy to clipboard operation
chumsky copied to clipboard

`select!` when returning an error gives an empty `expected`

Open ManicMarrc opened this issue 10 months ago • 1 comments

Whenever the select! parser returns an ExpectedFound error, it makes the expected field empty. I think this has to do with tokens that contains values like:

enum Token {
    Integer(u64),
    ...
}

ManicMarrc avatar Aug 20 '23 07:08 ManicMarrc