Search


Search something to see results

ErrorDescription

Error description

interface ErrorDescription {
    action: "drop" | "ignore";
    error?: Error;
    location?: Location;
    message: string;
    node?: any;
    rawTokens?: TokenizeResult[];
    syntax?: any;
}

Index

Properties

action: "drop" | "ignore"

Drop rule or declaration

error?: Error

Error object

location?: Location

Error location

message: string

Error message

node?: any

Error node

rawTokens?: TokenizeResult[]

Raw tokens

syntax?: any

Syntax error description