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. */ - Parameter
self:BlockDeclarationDO - Return
string
pub fn getPrintableText(self: BlockDeclarationDO) -> string; BlockDeclarationDO::__all__
Data constraint method.
- Parameter
db:CfamilyDB - Return
*BlockDeclarationDO
pub fn __all__(db: CfamilyDB) -> *BlockDeclarationDO;