Interface NewExpression

interface NewExpression {
    argumentTypes?: null | TypeDescriptions[];
    id: number;
    isConstant: boolean;
    isLValue?: boolean;
    isPure: boolean;
    lValueRequested: boolean;
    nodeType: "NewExpression";
    src: string;
    typeDescriptions: TypeDescriptions;
    typeName: TypeName;
}

Properties

argumentTypes?: null | TypeDescriptions[]
id: number
isConstant: boolean
isLValue?: boolean
isPure: boolean
lValueRequested: boolean
nodeType: "NewExpression"
src: string
typeDescriptions: TypeDescriptions
typeName: TypeName