#[non_exhaustive]
pub enum ParseErrorType {
Show 37 variants UnexpectedEOF, BadInput(LexError), UnknownOperator(String), MissingToken(StringString), MissingSymbol(String), MalformedCallExpr(String), MalformedIndexExpr(String), MalformedInExpr(String), MalformedCapture(String), DuplicatedProperty(String), DuplicatedSwitchCase, DuplicatedVariable(String), WrongSwitchIntegerCase, WrongSwitchDefaultCase, WrongSwitchCaseCondition, PropertyExpected, VariableExpected, ForbiddenVariable(String), Reserved(String), MismatchedType(StringString), ExprExpected(String), WrongDocComment, WrongFnDefinition, FnDuplicatedDefinition(Stringusize), FnMissingName, FnMissingParams(String), FnDuplicatedParam(StringString), FnMissingBody(String), WrongExport, AssignmentToConstant(String), AssignmentToInvalidLHS(String), VariableExists(String), VariableUndefined(String), ModuleUndefined(String), ExprTooDeep, LiteralTooLarge(Stringusize), LoopBreak,
}
Expand description

Error encountered when parsing a script.

Some errors never appear when certain features are turned on. They still exist so that the application can turn features on and off without going through massive code changes to remove/add back enum variants in match statements.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

UnexpectedEOF

The script ends prematurely.

BadInput(LexError)

Error in the script text. Wrapped value is the lex error.

UnknownOperator(String)

An unknown operator is encountered. Wrapped value is the operator.

MissingToken(StringString)

Expecting a particular token but not finding one. Wrapped values are the token and description.

MissingSymbol(String)

Expecting a particular symbol but not finding one. Wrapped value is the description.

MalformedCallExpr(String)

An expression in function call arguments () has syntax error. Wrapped value is the error description (if any).

MalformedIndexExpr(String)

An expression in indexing brackets [] has syntax error. Wrapped value is the error description (if any).

MalformedInExpr(String)

An expression in an in expression has syntax error. Wrapped value is the error description (if any).

MalformedCapture(String)

A capturing has syntax error. Wrapped value is the error description (if any).

DuplicatedProperty(String)

A map definition has duplicated property names. Wrapped value is the property name.

DuplicatedSwitchCase

👎Deprecated since 1.9.0:

This error variant is deprecated. It never occurs and will be removed in the next major version.

A switch case is duplicated.

Deprecated

This error variant is deprecated. It never occurs and will be removed in the next major version.

DuplicatedVariable(String)

A variable name is duplicated. Wrapped value is the variable name.

WrongSwitchIntegerCase

An integer case of a switch statement is in an appropriate place.

WrongSwitchDefaultCase

The default case of a switch statement is in an appropriate place.

WrongSwitchCaseCondition

The case condition of a switch statement is not appropriate.

PropertyExpected

Missing a property name for custom types and maps.

VariableExpected

Missing a variable name after the let, const, for or catch keywords.

ForbiddenVariable(String)

Forbidden variable name. Wrapped value is the variable name.

Reserved(String)

An identifier is a reserved symbol.

MismatchedType(StringString)

An expression is of the wrong type. Wrapped values are the type requested and type of the actual result.

ExprExpected(String)

Missing an expression. Wrapped value is the expression type.

WrongDocComment

Defining a doc-comment in an appropriate place (e.g. not at global level).

WrongFnDefinition

Defining a function fn in an appropriate place (e.g. inside another function).

FnDuplicatedDefinition(Stringusize)

Defining a function with a name that conflicts with an existing function. Wrapped values are the function name and number of parameters.

FnMissingName

Missing a function name after the fn keyword.

FnMissingParams(String)

A function definition is missing the parameters list. Wrapped value is the function name.

FnDuplicatedParam(StringString)

A function definition has duplicated parameters. Wrapped values are the function name and parameter name.

FnMissingBody(String)

A function definition is missing the body. Wrapped value is the function name.

WrongExport

Export statement not at global level.

AssignmentToConstant(String)

Assignment to an a constant variable. Wrapped value is the constant variable name.

AssignmentToInvalidLHS(String)

Assignment to an inappropriate LHS (left-hand-side) expression. Wrapped value is the error message (if any).

VariableExists(String)

A variable is already defined.

Only appears when variables shadowing is disabled.

VariableUndefined(String)

A variable is not found.

Only appears when strict variables mode is enabled.

ModuleUndefined(String)

An imported module is not found.

Only appears when strict variables mode is enabled.

ExprTooDeep

Expression exceeding the maximum levels of complexity.

LiteralTooLarge(Stringusize)

Literal exceeding the maximum size. Wrapped values are the data type name and the maximum size.

LoopBreak

Break statement not inside a loop.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.