YieldStatementDO

/**
* @brief DO class: A yield statement.
*/

Primary key: element_hash_id: int

schema YieldStatementDO {
  @primary element_hash_id: int,
  expression_hash_id: int,
  enclosing_expression_hash_id: int
}

YieldStatementDO::getEnclosingExpressionHashId

/**
* @brief gets the enclosing expression hash id of this element.
* @return int
*/
pub fn getEnclosingExpressionHashId(self: YieldStatementDO) -> int;

YieldStatementDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *YieldStatementDO;

YieldStatementDO::getExpressionHashId

/**
* @brief gets the expression hash id of this element.
* @return int
*/
pub fn getExpressionHashId(self: YieldStatementDO) -> int;