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 
*/
pub fn getAnAncestor(self: ConditionalPolyadicExpression) -> *ElementParent;

ConditionalPolyadicExpression::getIndex

/**
* @brief gets the index order of this element.
* @return int
*/
pub fn getIndex(self: ConditionalPolyadicExpression) -> int;

ConditionalPolyadicExpression::getSize

/**
* @brief gets the size of the element.
* @return int
*/
pub fn getSize(self: ConditionalPolyadicExpression) -> int;

ConditionalPolyadicExpression::getParent

/**
* @brief gets the parent of the expression.
* @return ElementParent 
*/
pub fn getParent(self: ConditionalPolyadicExpression) -> ElementParent;

ConditionalPolyadicExpression::getLocationHashId

/**
* @brief gets the location hash id of this element.
* @return int
*/
pub fn getLocationHashId(self: ConditionalPolyadicExpression) -> int;

ConditionalPolyadicExpression::getOperand

/**
* @brief gets the operand of the element.
* @return Expression
*/
pub fn getOperand(self: ConditionalPolyadicExpression) -> *Expression;

ConditionalPolyadicExpression::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: ConditionalPolyadicExpression) -> int;

ConditionalPolyadicExpression::getEnclosingStatement

/**
* @brief gets the statement which encloses the expression.
* @return Statement 
*/
pub fn getEnclosingStatement(self: ConditionalPolyadicExpression) -> Statement;

ConditionalPolyadicExpression::getOpcode

/**
* @brief gets the opcode of the element.
* @return string
*/
pub fn getOpcode(self: ConditionalPolyadicExpression) -> string;

ConditionalPolyadicExpression::__all__

Data constraint method.

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

ConditionalPolyadicExpression::getPrintableText

/**
* @brief gets a printed representation of this element, including its structure where applicable.
* @return string.
*/
pub fn getPrintableText(self: ConditionalPolyadicExpression) -> string;

ConditionalPolyadicExpression::getLocation

/**
* @brief gets the location for the element.
* @return Location
*/
pub fn getLocation(self: ConditionalPolyadicExpression) -> Location;

ConditionalPolyadicExpression::getEnclosingCallable

/**
* @brief gets the callable in which this expression occurs.
* @return Callable 
*/
pub fn getEnclosingCallable(self: ConditionalPolyadicExpression) -> Callable;

ConditionalPolyadicExpression::getType

/**
* @brief gets the type of this element.
* @return string
*/
pub fn getType(self: ConditionalPolyadicExpression) -> string;

ConditionalPolyadicExpression::getOperandAt

/**
* @brief gets the operand of the element at a given index.
* @return Expression
*/
pub fn getOperandAt(self: ConditionalPolyadicExpression, index: int) -> Expression;