Sniper10754
Sniper10754
Im a linux user which is using jedi in the python vscodium extension, after editing with jedi for a bit it started searching for the python interpreter in `bin/python` making...
When using a custom error type, is there a way to have a span provided with the error? what i mean is that a custom error type needs to satisfy...
This issue is about this code: ```rs use std::convert::Infallible; use chumsky::{extra::Err, prelude::*}; #[derive(Debug)] enum Expr() -> impl Parser>> { recursive(|expr| { let let_ = text::keyword("let") .ignore_then(text::ident()) .then_ignore(just('=').padded()) .then(expr.clone()) .map(|(name, expr)|...