CallExpressionDO

/**
* @brief DO class: An expression represents a function call
*/

Primary key: oid: int

schema CallExpressionDO {
  @primary oid: int,
  callee_declaration_oid: int,
  printable_text: string
}

CallExpressionDO::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: CallExpressionDO) -> string;

CallExpressionDO::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *CallExpressionDO;

CallExpressionDO::getCalleeDeclarationOid

/**
* @brief gets the callee declaration oid of this element.
* @return int
*/
pub fn getCalleeDeclarationOid(self: CallExpressionDO) -> int;