StmtDO
/**
* @brief DO class: A stmt.
*/
Primary key: oid: int
schema StmtDO {
@primary oid: int,
file_id: int,
kind: int,
parent_id: int,
idx: int,
debug_info: string
}
StmtDO::getDebugInfo
/**
* @brief gets the debug info of this element.
* @return string
*/
- Parameter
self
:StmtDO
- Return
string
pub fn getDebugInfo(self: StmtDO) -> string;
StmtDO::getFileId
/**
* @brief gets the file id of this element.
* @return int
*/
- Parameter
self
:StmtDO
- Return
int
pub fn getFileId(self: StmtDO) -> int;
StmtDO::__all__
Data constraint method.
pub fn __all__(db: GoDB) -> *StmtDO;
StmtDO::getParentId
/**
* @brief gets the parent id of this element.
* @return int
*/
- Parameter
self
:StmtDO
- Return
int
pub fn getParentId(self: StmtDO) -> int;
StmtDO::getIdx
/**
* @brief gets the idx of this element.
* @return int
*/
- Parameter
self
:StmtDO
- Return
int
pub fn getIdx(self: StmtDO) -> int;
StmtDO::getKind
/**
* @brief gets the kind of this element.
* @return int
*/
- Parameter
self
:StmtDO
- Return
int
pub fn getKind(self: StmtDO) -> int;