ValueDeclarationDO
/**
* @brief DO class: Represent the declaration of a variable (in which case it is an lvalue) a function (in which case it is a function designator) or an enum constant.
*/
Primary key: oid: int
schema ValueDeclarationDO {
@primary oid: int,
printable_text: string
}
ValueDeclarationDO::getPrintableText
/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
- Parameter
self
:ValueDeclarationDO
- Return
string
pub fn getPrintableText(self: ValueDeclarationDO) -> string;
ValueDeclarationDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*ValueDeclarationDO
pub fn __all__(db: CfamilyDB) -> *ValueDeclarationDO;