ScopeDO

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

Primary key: oid: int

schema ScopeDO {
  @primary oid: int,
  kind: int,
  debug_info: string
}

ScopeDO::getDebugInfo

/**
* @brief gets the debug info of this element.
* @return string
*/
  • Parameter self: ScopeDO
  • Return string
pub fn getDebugInfo(self: ScopeDO) -> string;

ScopeDO::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *ScopeDO;

ScopeDO::getKind

/**
* @brief gets the kind of this element.
* @return int
*/
  • Parameter self: ScopeDO
  • Return int
pub fn getKind(self: ScopeDO) -> int;