CallSignatureDeclaration

/**
* A call signature declaration.
*/

Inherit from TypeElement

Primary key: id: int

schema CallSignatureDeclaration extends TypeElement {
  @primary id: int
}

CallSignatureDeclaration::getSymbol

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

CallSignatureDeclaration::getAnAncestorEnclosingFunction

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

CallSignatureDeclaration::getIndex

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

CallSignatureDeclaration::getParentOid

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

CallSignatureDeclaration::getRelativePath

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

CallSignatureDeclaration::getLastChild

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

CallSignatureDeclaration::getEndColumnNumber

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

CallSignatureDeclaration::getParent

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

CallSignatureDeclaration::getChildCount

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

CallSignatureDeclaration::getDecorator

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

CallSignatureDeclaration::getEndLineNumber

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

CallSignatureDeclaration::getATrailingComment

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

CallSignatureDeclaration::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: CallSignatureDeclaration, level: int) -> Node;

CallSignatureDeclaration::getChild

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

CallSignatureDeclaration::getRoot

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

CallSignatureDeclaration::getAChild

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

CallSignatureDeclaration::getStartColumnNumber

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

CallSignatureDeclaration::getStartLineNumber

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

CallSignatureDeclaration::__all__

Data constraint method.

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

CallSignatureDeclaration::getLocation

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

CallSignatureDeclaration::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: CallSignatureDeclaration, level: int) -> *Node;

CallSignatureDeclaration::getKind

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

CallSignatureDeclaration::getAModifier

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

CallSignatureDeclaration::getAnAncestor

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

CallSignatureDeclaration::getEnclosingFunction

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

CallSignatureDeclaration::getADescendant

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

CallSignatureDeclaration::getALeadingComment

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

CallSignatureDeclaration::getFile

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

CallSignatureDeclaration::getModifier

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

CallSignatureDeclaration::getText

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

CallSignatureDeclaration::getAComment

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

CallSignatureDeclaration::getADecorator

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