interface ExpressionStatement {
    expression: Expression;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    trailingComments?: Comment[];
    type: "ExpressionStatement";
}

Hierarchy (View Summary)

Properties

expression: Expression
leadingComments?: Comment[]
loc?: null | SourceLocation
range?: [number, number]
trailingComments?: Comment[]
type: "ExpressionStatement"