PolyadicExpression

/**
* @brief A polyadic expression.
*/

Inherit from Expression

Primary key: element_hash_id: int

schema PolyadicExpression extends Expression {
  @primary element_hash_id: int,
  name: string,
  parent_hash_id: int,
  index_order: int,
  location_hash_id: int,
  printable_text: string
}

PolyadicExpression::getOperand

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

PolyadicExpression::getParent

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

PolyadicExpression::getLocationHashId

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

PolyadicExpression::getParentHashId

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

PolyadicExpression::getEnclosingStatement

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

PolyadicExpression::getOpcode

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

PolyadicExpression::getPrintableText

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

PolyadicExpression::getLocation

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

PolyadicExpression::getEnclosingCallable

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

PolyadicExpression::__all__

Data constraint method.

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

PolyadicExpression::getOperandAt

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

PolyadicExpression::getType

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

PolyadicExpression::getSize

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

PolyadicExpression::getIndex

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

PolyadicExpression::getAnAncestor

/**
* @brief gets an ancestor of the element.
* @return ElementParent 
*/
pub fn getAnAncestor(self: PolyadicExpression) -> *ElementParent;