Open
Description
Currently in a few places fluent error type is vector of errors that allows you to display multiple syntax errors, but Vec<T>
wasn't designed as an error type and as such when you're building a library on-top of fluent, where you just want to propagate the error using an error handling library or ?
, you have to write quite a bit of boilerplate to correctly handle it.