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