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
*/
- Parameter
self
:CallExpression
- Return
int
pub fn getLocationOid(self: CallExpression) -> int;
CallExpression::getLocation
/**
* @brief gets the location for the element.
* @return Location
*/
- Parameter
self
:CallExpression
- Return
Location
pub fn getLocation(self: CallExpression) -> Location;
CallExpression::getPrintableText
/**
* @brief gets the printable text of this element.
* @return string
*/
- Parameter
self
:CallExpression
- Return
string
pub fn getPrintableText(self: CallExpression) -> string;
CallExpression::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*CallExpression
pub fn __all__(db: PythonDB) -> *CallExpression;
CallExpression::getType
/**
* @brief gets the type of this element.
* @return string
*/
- Parameter
self
:CallExpression
- Return
string
pub fn getType(self: CallExpression) -> string;
CallExpression::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:CallExpression
- Return
int
pub fn getParentOid(self: CallExpression) -> int;
CallExpression::getElementIndex
/**
* @brief gets the element index of this element.
* @return int
*/
- Parameter
self
:CallExpression
- Return
int
pub fn getElementIndex(self: CallExpression) -> int;
CallExpression::getSize
/**
* @brief gets the size information for the element.
* @return NumberOfLines
*/
- Parameter
self
:CallExpression
- Return
NumberOfLines
pub fn getSize(self: CallExpression) -> NumberOfLines;
CallExpression::getArgs
/**
* @brief gets the arguments in the call.
* @return CombineElement
*/
- Parameter
self
:CallExpression
- 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
*/
- Parameter
self
:CallExpression
- Return
Scope
pub fn getEnclosingScope(self: CallExpression) -> Scope;
CallExpression::getParent
/**
* @brief gets the parent of the expression.
* @return CombineElement
*/
- Parameter
self
:CallExpression
- Return
CombineElement
pub fn getParent(self: CallExpression) -> CombineElement;
CallExpression::getFunctionExpression
/**
* @brief gets the function expression in the call.
* @return Expression
*/
- Parameter
self
:CallExpression
- Return
Expression
pub fn getFunctionExpression(self: CallExpression) -> Expression;
CallExpression::getAnAncestor
/**
* @brief gets an ancestor of the element.
* @return CombineElement
*/
- Parameter
self
:CallExpression
- Return
*CombineElement
pub fn getAnAncestor(self: CallExpression) -> *CombineElement;