ExpressionWithTypeArguments

/**
* An expression with type arguments.
*/

Inherit from NodeWithTypeArguments

Primary key: id: int

schema ExpressionWithTypeArguments extends NodeWithTypeArguments {
  @primary id: int
}

ExpressionWithTypeArguments::getADecorator

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

ExpressionWithTypeArguments::getAComment

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

ExpressionWithTypeArguments::getText

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

ExpressionWithTypeArguments::getModifier

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

ExpressionWithTypeArguments::getFile

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

ExpressionWithTypeArguments::getALeadingComment

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

ExpressionWithTypeArguments::getADescendant

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

ExpressionWithTypeArguments::getEnclosingFunction

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

ExpressionWithTypeArguments::getAnAncestor

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

ExpressionWithTypeArguments::getDecorator

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

ExpressionWithTypeArguments::getChildCount

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

ExpressionWithTypeArguments::getEndColumnNumber

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

ExpressionWithTypeArguments::getParent

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

ExpressionWithTypeArguments::getLastChild

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

ExpressionWithTypeArguments::getIndex

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

ExpressionWithTypeArguments::__all__

Data constraint method.

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

ExpressionWithTypeArguments::getLocation

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

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

ExpressionWithTypeArguments::getRelativePath

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

ExpressionWithTypeArguments::getAnAncestorEnclosingFunction

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

ExpressionWithTypeArguments::getSymbol

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

ExpressionWithTypeArguments::getRoot

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

ExpressionWithTypeArguments::getParentOid

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

ExpressionWithTypeArguments::getEndLineNumber

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

ExpressionWithTypeArguments::getATrailingComment

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

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

ExpressionWithTypeArguments::getChild

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

ExpressionWithTypeArguments::getAChild

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

ExpressionWithTypeArguments::getStartColumnNumber

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

ExpressionWithTypeArguments::getStartLineNumber

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

ExpressionWithTypeArguments::getAModifier

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

ExpressionWithTypeArguments::getKind

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