CommonCallExpression

Primary key: id: int

schema CommonCallExpression {
  @primary id: int
}

CommonCallExpression::getEnclosingCallable

/**
* @brief gets the enclosing callable of the call expression.
* @return Callable
*/
pub fn getEnclosingCallable(self: CommonCallExpression) -> Callable;

CommonCallExpression::getCalleeMethod

/**
* @brief gets the callee method declaration of the call expression.
* @return Callable
*/
pub fn getCalleeMethod(self: CommonCallExpression) -> *Callable;

CommonCallExpression::__all__

Data constraint method.

pub fn __all__(db: CfamilyDB) -> *CommonCallExpression;

CommonCallExpression::getAnAncestor

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

CommonCallExpression::getCalleeClass

/**
* @brief gets the callee class declaration of the call expression.
* @return Class
*/
pub fn getCalleeClass(self: CommonCallExpression) -> *Class;

CommonCallExpression::getPrintableText

pub fn getPrintableText(self: CommonCallExpression) -> string;