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
*/
- Parameter
self
:PolyadicExpression
- Return
*Expression
pub fn getOperand(self: PolyadicExpression) -> *Expression;
PolyadicExpression::getParent
/**
* @brief gets the parent of the expression.
* @return ElementParent
*/
- Parameter
self
:PolyadicExpression
- Return
ElementParent
pub fn getParent(self: PolyadicExpression) -> ElementParent;
PolyadicExpression::getLocationHashId
/**
* @brief gets the location hash id of this element.
* @return int
*/
- Parameter
self
:PolyadicExpression
- Return
int
pub fn getLocationHashId(self: PolyadicExpression) -> int;
PolyadicExpression::getParentHashId
/**
* @brief gets the parent hash id of this element.
* @return int
*/
- Parameter
self
:PolyadicExpression
- Return
int
pub fn getParentHashId(self: PolyadicExpression) -> int;
PolyadicExpression::getEnclosingStatement
/**
* @brief gets the statement which encloses the expression.
* @return Statement
*/
- Parameter
self
:PolyadicExpression
- Return
Statement
pub fn getEnclosingStatement(self: PolyadicExpression) -> Statement;
PolyadicExpression::getOpcode
/**
* @brief gets the opcode of the element.
* @return string
*/
- Parameter
self
:PolyadicExpression
- 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.
*/
- Parameter
self
:PolyadicExpression
- Return
string
pub fn getPrintableText(self: PolyadicExpression) -> string;
PolyadicExpression::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:PolyadicExpression
- Return
Location
pub fn getLocation(self: PolyadicExpression) -> Location;
PolyadicExpression::getEnclosingCallable
/**
* @brief gets the callable in which this expression occurs.
* @return Callable
*/
- Parameter
self
:PolyadicExpression
- Return
Callable
pub fn getEnclosingCallable(self: PolyadicExpression) -> Callable;
PolyadicExpression::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*PolyadicExpression
pub fn __all__(db: JavaDB) -> *PolyadicExpression;
PolyadicExpression::getOperandAt
/**
* @brief gets the operand of the element at a given index.
* @return Expression
*/
- Parameter
self
:PolyadicExpression
- Parameter
index
:int
- Return
Expression
pub fn getOperandAt(self: PolyadicExpression, index: int) -> Expression;
PolyadicExpression::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:PolyadicExpression
- Return
string
pub fn getType(self: PolyadicExpression) -> string;
PolyadicExpression::getSize
/**
* @brief gets the size of the element.
* @return int
*/
- Parameter
self
:PolyadicExpression
- Return
int
pub fn getSize(self: PolyadicExpression) -> int;
PolyadicExpression::getIndex
/**
* @brief gets the index order of this element.
* @return int
*/
- Parameter
self
:PolyadicExpression
- Return
int
pub fn getIndex(self: PolyadicExpression) -> int;
PolyadicExpression::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return ElementParent
*/
- Parameter
self
:PolyadicExpression
- Return
*ElementParent
pub fn getAnAncestor(self: PolyadicExpression) -> *ElementParent;