CallLikeExpression

/**
* A call-like expression.
*/

Inherit from Expression

Primary key: id: int

schema CallLikeExpression extends Expression {
  @primary id: int
}

CallLikeExpression::getSymbol

/**
* Gets the symbol associated with this node.
*/
pub fn getSymbol(self: CallLikeExpression) -> Symbol;

CallLikeExpression::getAnAncestorEnclosingFunction

/**
* Gets an ancestor enclosing function of it
*/
pub fn getAnAncestorEnclosingFunction(self: CallLikeExpression) -> *FunctionLikeDeclaration;

CallLikeExpression::getIndex

pub fn getIndex(self: CallLikeExpression) -> int;

CallLikeExpression::getParentOid

/**
* Gets the parent oid of this node.
*/
pub fn getParentOid(self: CallLikeExpression) -> int;

CallLikeExpression::getRelativePath

/**
* Gets the relative path of this node.
*/
pub fn getRelativePath(self: CallLikeExpression) -> string;

CallLikeExpression::getLastChild

/**
* Gets the last child of this node parent.
*/
pub fn getLastChild(self: CallLikeExpression) -> Node;

CallLikeExpression::getEndColumnNumber

pub fn getEndColumnNumber(self: CallLikeExpression) -> int;

CallLikeExpression::getParent

/**
* Gets the parent node of this node.
*/
pub fn getParent(self: CallLikeExpression) -> Node;

CallLikeExpression::getKind

/**
* Get the syntax kind of this node
*/
pub fn getKind(self: CallLikeExpression) -> int;

CallLikeExpression::getAModifier

/**
* Gets a modifier.
*/
pub fn getAModifier(self: CallLikeExpression) -> *Modifier;

CallLikeExpression::getChildCount

/**
* Gets the number of child nodes.
*/
pub fn getChildCount(self: CallLikeExpression) -> int;

CallLikeExpression::getDecorator

/**
* Gets the `i`th decorator.
*/
pub fn getDecorator(self: CallLikeExpression, i: int) -> Decorator;

CallLikeExpression::getAnAncestor

/**
* Gets an ancestor of this node. 
*/
pub fn getAnAncestor(self: CallLikeExpression) -> *Node;

CallLikeExpression::getRoot

/**
* Gets the root top-level of this node. 
*/
pub fn getRoot(self: CallLikeExpression) -> TopLevelDO;

CallLikeExpression::getAChild

/**
* Gets a child node of this node.
*/
pub fn getAChild(self: CallLikeExpression) -> *Node;

CallLikeExpression::getStartColumnNumber

pub fn getStartColumnNumber(self: CallLikeExpression) -> int;

CallLikeExpression::getStartLineNumber

pub fn getStartLineNumber(self: CallLikeExpression) -> int;

CallLikeExpression::getChild

/**
* Gets the `i`th child of this node.
*/
pub fn getChild(self: CallLikeExpression, i: int) -> Node;

CallLikeExpression::getCallee

/**
* Gets the callee of this call-like expression.
*/
pub fn getCallee(self: CallLikeExpression) -> FunctionLikeDeclaration;

CallLikeExpression::getText

/**
* Gets the text of this node.
*/
pub fn getText(self: CallLikeExpression) -> string;

CallLikeExpression::__all__

Data constraint method.

pub fn __all__(db: JavascriptDB) -> *CallLikeExpression;

CallLikeExpression::getLocation

/**
* Gets the location of this node.
*/
pub fn getLocation(self: CallLikeExpression) -> Location;

CallLikeExpression::getADescendantByLevel

/**
* Gets a descendant of this node by the level of the hierarchy.
*
* @param level: the number of levels to go up in the hierarchy.
*/
pub fn getADescendantByLevel(self: CallLikeExpression, level: int) -> *Node;

CallLikeExpression::hasCallee

/**
* Determine whether this CallLikeExpression has a callee.
*/
pub fn hasCallee(self: CallLikeExpression) -> bool;

CallLikeExpression::getEnclosingFunction

/**
* Gets the enclosing function of it
*/
pub fn getEnclosingFunction(self: CallLikeExpression) -> FunctionLikeDeclaration;

CallLikeExpression::getADescendant

/**
* Gets a descendant of this node. 
*/
pub fn getADescendant(self: CallLikeExpression) -> *Node;

CallLikeExpression::getEndLineNumber

pub fn getEndLineNumber(self: CallLikeExpression) -> int;

CallLikeExpression::getATrailingComment

/**
* Gets the trailing comments of it
*/
pub fn getATrailingComment(self: CallLikeExpression) -> *Comment;

CallLikeExpression::getAnAncestorByLevel

/**
* Gets an ancestor of this node by the level of the hierarchy.
*
* @param level: the number of levels to go up in the hierarchy.
*/
pub fn getAnAncestorByLevel(self: CallLikeExpression, level: int) -> Node;

CallLikeExpression::getALeadingComment

/**
* Gets the leading comments of it
*/
pub fn getALeadingComment(self: CallLikeExpression) -> *Comment;

CallLikeExpression::getFile

/**
* Gets the file of this node.
*/
pub fn getFile(self: CallLikeExpression) -> File;

CallLikeExpression::getADecorator

/**
* Gets a decorator.
*/
pub fn getADecorator(self: CallLikeExpression) -> *Decorator;

CallLikeExpression::getAComment

/**
* Gets the comments related to it
*/
pub fn getAComment(self: CallLikeExpression) -> *Comment;

CallLikeExpression::getModifier

/**
* Gets the `i`th modifier.
*/
pub fn getModifier(self: CallLikeExpression, i: int) -> Modifier;