interface FunctionExpression {
    async?: boolean;
    body: BlockStatement;
    generator?: boolean;
    id?: null | Identifier;
    leadingComments?: Comment[];
    loc?: null | SourceLocation;
    params: Pattern[];
    range?: [number, number];
    trailingComments?: Comment[];
    type: "FunctionExpression";
}

Hierarchy (View Summary)

Properties

async?: boolean
generator?: boolean
id?: null | Identifier
leadingComments?: Comment[]
loc?: null | SourceLocation
params: Pattern[]
range?: [number, number]
trailingComments?: Comment[]
type: "FunctionExpression"