Interface ICPPASTNewExpression

    • Field Detail

      • NEW_TYPEID_ARRAY_EXPRESSION

        @Deprecated
        static final ASTNodeProperty NEW_TYPEID_ARRAY_EXPRESSION
        Deprecated.
        the id-expressions are part of the type-id.
        Restriction:
        This field is not intended to be referenced by clients.
    • Method Detail

      • isGlobal

        boolean isGlobal()
        Is this a ::new expression?
      • isArrayAllocation

        boolean isArrayAllocation()
        Returns true if this expression is allocating an array.
        Since:
        5.1
      • getTypeId

        IASTTypeId getTypeId()
        Get the type Id. The type-id includes the optional array modifications.
      • isNewTypeId

        boolean isNewTypeId()
        Returns whether the the typeID a new type ID, which is the case when the type-id is provided without parenthesis.
      • getInitializer

        IASTInitializer getInitializer()
        Returns the initializer or null.
        Since:
        5.2
      • copy

        ICPPASTNewExpression copy()
        Description copied from interface: IASTNode
        Returns a mutable copy of the tree rooted at this node. The following postconditions hold:
         copy.getParent() == null
         copy.getPropertyInParent() == null
         copy.isFrozen() == false
         
        Preprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.

        Calling this method is equivalent to copy(CopyStyle.withoutLocations).

        Specified by:
        copy in interface IASTExpression
        Specified by:
        copy in interface IASTInitializerClause
        Specified by:
        copy in interface IASTNode
        Since:
        5.1
      • copy

        ICPPASTNewExpression copy​(IASTNode.CopyStyle style)
        Description copied from interface: IASTNode
        Returns a mutable copy of the tree rooted at this node. The following postconditions hold:
         copy.getParent() == null
         copy.getPropertyInParent() == null
         copy.isFrozen() == false
         
        Preprocessor nodes do not currently support being copied. Implicit name nodes are not copied, instead they can be regenerated if required.
        Specified by:
        copy in interface IASTExpression
        Specified by:
        copy in interface IASTInitializerClause
        Specified by:
        copy in interface IASTNode
        Parameters:
        style - IASTNode.CopyStyle create a copy with or without locations. Please see IASTNode.CopyStyle for restrictions on copies with Locations.
        Since:
        5.3
      • setIsGlobal

        void setIsGlobal​(boolean value)
        Not allowed on frozen ast.
      • setPlacementArguments

        void setPlacementArguments​(IASTInitializerClause[] expression)
        Not allowed on frozen ast.
        Since:
        5.2
      • setTypeId

        void setTypeId​(IASTTypeId typeId)
        Not allowed on frozen ast.
      • setIsNewTypeId

        void setIsNewTypeId​(boolean value)
        Not allowed on frozen ast.
      • setInitializer

        void setInitializer​(IASTInitializer init)
        Not allowed on frozen ast.
        Since:
        5.2
      • getNewTypeIdArrayExpressions

        @Deprecated
        IASTExpression[] getNewTypeIdArrayExpressions()
        Deprecated.
        the id-expressions are part of the type-id.
        Restriction:
        This method is not intended to be referenced by clients.
      • addNewTypeIdArrayExpression

        @Deprecated
        void addNewTypeIdArrayExpression​(IASTExpression expression)
        Deprecated.
        the id-expressions are part of the type-id
        Restriction:
        This method is not intended to be referenced by clients.