BlockDeclarationDO

/** * @brief DO class: Represents a block literal declaration, which is like an unnamed FunctionDecl. */ 

Primary key: oid: int

schema BlockDeclarationDO { @primary oid: int, printable_text: string } 

BlockDeclarationDO::getPrintableText

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

BlockDeclarationDO::__all__

Data constraint method.

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