Type Alias rustpython_parser::ParseError

source ·
pub type ParseError = BaseError<ParseErrorType>;
Expand description

Represents represent errors that occur during parsing and are returned by the parse_* functions.

Aliased Type§

struct ParseError {
    pub error: ParseErrorType,
    pub offset: TextSize,
    pub source_path: String,
}

Fields§

§error: ParseErrorType§offset: TextSize§source_path: String