CallExpression

/** * @brief A function call expression. */ 

Inherit from Expression

Primary key: element_oid: int

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

CallExpression::getLocationOid

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

CallExpression::getLocation

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

CallExpression::getPrintableText

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

CallExpression::__all__

Data constraint method.

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

CallExpression::getType

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

CallExpression::getParentOid

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

CallExpression::getElementIndex

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

CallExpression::getSize

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

CallExpression::getArgs

/** * @brief gets the arguments in the call. * @return CombineElement */ 
pub fn getArgs(self: CallExpression) -> *CombineElement; 

CallExpression::getEnclosingScope

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

CallExpression::getParent

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

CallExpression::getFunctionExpression

/** * @brief gets the function expression in the call. * @return Expression */ 
pub fn getFunctionExpression(self: CallExpression) -> Expression; 

CallExpression::getAnAncestor

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