ScopeEnclosingExpressionDO

/**
* @brief DO class: A scope enclosing expression.
*/

Primary key: expression_oid: int

schema ScopeEnclosingExpressionDO {
  @primary expression_oid: int,
  scope_oid: int
}

ScopeEnclosingExpressionDO::getScopeOid

/**
* @brief gets the scope oid of this element.
* @return int
*/
pub fn getScopeOid(self: ScopeEnclosingExpressionDO) -> int;

ScopeEnclosingExpressionDO::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *ScopeEnclosingExpressionDO;