AttributeExpression

/**
* @brief An attribute expression.
*/

Inherit from Expression

Primary key: element_oid: int

schema AttributeExpression extends Expression {
  @primary element_oid: int,
  type: string,
  element_index: int,
  parent_oid: int,
  location_oid: int,
  printable_text: string
}

AttributeExpression::getSize

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

AttributeExpression::getLocation

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

AttributeExpression::getAnAncestor

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

AttributeExpression::getParent

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

AttributeExpression::getLocationOid

/**
* @brief gets the location oid of this element.
* @return int
*/
pub fn getLocationOid(self: AttributeExpression) -> int;

AttributeExpression::getType

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

AttributeExpression::__all__

Data constraint method.

pub fn __all__(db: PythonDB) -> *AttributeExpression;

AttributeExpression::getPrintableText

/**
* @brief gets the printable text of this element.
* @return string
*/
pub fn getPrintableText(self: AttributeExpression) -> string;

AttributeExpression::getEnclosingScope

/**
* @brief gets the immediately enclosing scope (module, function or class) whose body contains this statement.
* @return Scope 
*/
pub fn getEnclosingScope(self: AttributeExpression) -> Scope;

AttributeExpression::getParentOid

/**
* @brief gets the parent oid of this element.
* @return int
*/
pub fn getParentOid(self: AttributeExpression) -> int;

AttributeExpression::getElementIndex

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