CallExpressionArgumentsDO

/**
* @brief DO class: The arguments to an call_expression, not including the receiver
*/

Primary key: oid: int

schema CallExpressionArgumentsDO {
  @primary oid: int,
  call_expression_oid: int,
  printable_text: string
}

CallExpressionArgumentsDO::__all__

Data constraint method.

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

CallExpressionArgumentsDO::getPrintableText

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

CallExpressionArgumentsDO::getCallExpressionOid

/**
* @brief gets the call expression oid of this element.
* @return int
*/
pub fn getCallExpressionOid(self: CallExpressionArgumentsDO) -> int;