BlockExpressionDO

/**
* @brief DO class: BlockExpr - Adaptor class for mixing a BlockDecl with expressions. \n
^{ statement-body } or ^(int arg1, float arg2){ statement-body }
*/

Primary key: oid: int

schema BlockExpressionDO {
  @primary oid: int,
  block_declaration_oid: int,
  printable_text: string
}

BlockExpressionDO::getPrintableText

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

BlockExpressionDO::__all__

Data constraint method.

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

BlockExpressionDO::getBlockDeclarationOid

/**
* @brief gets the block declaration oid of this element.
* @return int
*/
pub fn getBlockDeclarationOid(self: BlockExpressionDO) -> int;