interface RegExpLiteral {
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    raw?: string;
    regex: { flags: string; pattern: string };
    trailingComments?: Comment[];
    type: "Literal";
    value?: null | RegExp;
}

Hierarchy (View Summary)

Properties

leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
raw?: string
regex: { flags: string; pattern: string }
trailingComments?: Comment[]
type: "Literal"
value?: null | RegExp