UnaryExpression

/** * @brief An unary expression. */ 

Inherit from Expression

Primary key: element_hash_id: int

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

UnaryExpression::getParentHashId

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

UnaryExpression::getEnclosingStatement

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

UnaryExpression::getOpcode

/** * @brief gets the opcode of the unary expression * @return string */ 
pub fn getOpcode(self: UnaryExpression) -> string; 

UnaryExpression::getAnAncestor

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

UnaryExpression::getType

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

UnaryExpression::getIndex

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

UnaryExpression::getOperand

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

UnaryExpression::getParent

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

UnaryExpression::getLocationHashId

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

UnaryExpression::getSize

/** * @brief gets the size information for the element. * @return NumberOfLines */ 
pub fn getSize(self: UnaryExpression) -> NumberOfLines; 

UnaryExpression::getPrintableText

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

UnaryExpression::getLocation

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

UnaryExpression::__all__

Data constraint method.

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

UnaryExpression::getEnclosingCallable

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