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.
*/
pub fn getPrintableText(self: ValueDeclarationDO) -> string;

ValueDeclarationDO::__all__

Data constraint method.

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