ConditionalPolyadicExpression
Inherit from PolyadicExpression
Primary key: element_hash_id: int
schema ConditionalPolyadicExpression extends PolyadicExpression { @primary element_hash_id: int, name: string, parent_hash_id: int, index_order: int, location_hash_id: int, printable_text: string }
ConditionalPolyadicExpression::getAnAncestor
/** * @brief gets an ancestor of the element. * @return ElementParent */
- Parameter
self
:ConditionalPolyadicExpression
- Return
*ElementParent
pub fn getAnAncestor(self: ConditionalPolyadicExpression) -> *ElementParent;
ConditionalPolyadicExpression::getIndex
/** * @brief gets the index order of this element. * @return int */
- Parameter
self
:ConditionalPolyadicExpression
- Return
int
pub fn getIndex(self: ConditionalPolyadicExpression) -> int;
ConditionalPolyadicExpression::getSize
/** * @brief gets the size of the element. * @return int */
- Parameter
self
:ConditionalPolyadicExpression
- Return
int
pub fn getSize(self: ConditionalPolyadicExpression) -> int;
ConditionalPolyadicExpression::getParent
/** * @brief gets the parent of the expression. * @return ElementParent */
- Parameter
self
:ConditionalPolyadicExpression
- Return
ElementParent
pub fn getParent(self: ConditionalPolyadicExpression) -> ElementParent;
ConditionalPolyadicExpression::getLocationHashId
/** * @brief gets the location hash id of this element. * @return int */
- Parameter
self
:ConditionalPolyadicExpression
- Return
int
pub fn getLocationHashId(self: ConditionalPolyadicExpression) -> int;
ConditionalPolyadicExpression::getOperand
/** * @brief gets the operand of the element. * @return Expression */
- Parameter
self
:ConditionalPolyadicExpression
- Return
*Expression
pub fn getOperand(self: ConditionalPolyadicExpression) -> *Expression;
ConditionalPolyadicExpression::getParentHashId
/** * @brief gets the parent hash id of this element. * @return int */
- Parameter
self
:ConditionalPolyadicExpression
- Return
int
pub fn getParentHashId(self: ConditionalPolyadicExpression) -> int;
ConditionalPolyadicExpression::getEnclosingStatement
/** * @brief gets the statement which encloses the expression. * @return Statement */
- Parameter
self
:ConditionalPolyadicExpression
- Return
Statement
pub fn getEnclosingStatement(self: ConditionalPolyadicExpression) -> Statement;
ConditionalPolyadicExpression::getOpcode
/** * @brief gets the opcode of the element. * @return string */
- Parameter
self
:ConditionalPolyadicExpression
- Return
string
pub fn getOpcode(self: ConditionalPolyadicExpression) -> string;
ConditionalPolyadicExpression::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ConditionalPolyadicExpression
pub fn __all__(db: JavaDB) -> *ConditionalPolyadicExpression;
ConditionalPolyadicExpression::getPrintableText
/** * @brief gets a printed representation of this element, including its structure where applicable. * @return string. */
- Parameter
self
:ConditionalPolyadicExpression
- Return
string
pub fn getPrintableText(self: ConditionalPolyadicExpression) -> string;
ConditionalPolyadicExpression::getLocation
/** * @brief gets the location for the element. * @return Location */
- Parameter
self
:ConditionalPolyadicExpression
- Return
Location
pub fn getLocation(self: ConditionalPolyadicExpression) -> Location;
ConditionalPolyadicExpression::getEnclosingCallable
/** * @brief gets the callable in which this expression occurs. * @return Callable */
- Parameter
self
:ConditionalPolyadicExpression
- Return
Callable
pub fn getEnclosingCallable(self: ConditionalPolyadicExpression) -> Callable;
ConditionalPolyadicExpression::getType
/** * @brief gets the type of this element. * @return string */
- Parameter
self
:ConditionalPolyadicExpression
- Return
string
pub fn getType(self: ConditionalPolyadicExpression) -> string;
ConditionalPolyadicExpression::getOperandAt
/** * @brief gets the operand of the element at a given index. * @return Expression */
- Parameter
self
:ConditionalPolyadicExpression
- Parameter
index
:int
- Return
Expression
pub fn getOperandAt(self: ConditionalPolyadicExpression, index: int) -> Expression;