//! The Yul IR lexer error.
usecrate::lexer::token::location::Location;/// The Yul IR lexer error.
#[derive(Debug, thiserror::Error, PartialEq, Eq)]pubenumError{/// The invalid lexeme error.
#[error("{location} Invalid character sequence `{sequence}`")]
InvalidLexeme {/// The lexeme location.
location: Location,/// The invalid sequence of characters.
sequence:String,},}