ArrowFunctionExpression

/**
* An arrow function expression.
*/

Inherit from Expression

Primary key: id: int

schema ArrowFunctionExpression extends Expression {
  @primary id: int
}

ArrowFunctionExpression::getSymbol

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

ArrowFunctionExpression::getAnAncestorEnclosingFunction

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

ArrowFunctionExpression::getIndex

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

ArrowFunctionExpression::getParentOid

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

ArrowFunctionExpression::getRelativePath

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

ArrowFunctionExpression::getLastChild

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

ArrowFunctionExpression::getEndColumnNumber

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

ArrowFunctionExpression::getParent

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

ArrowFunctionExpression::getChildCount

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

ArrowFunctionExpression::getDecorator

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

ArrowFunctionExpression::getEndLineNumber

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

ArrowFunctionExpression::getATrailingComment

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

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

ArrowFunctionExpression::getChild

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

ArrowFunctionExpression::getRoot

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

ArrowFunctionExpression::getAChild

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

ArrowFunctionExpression::getStartColumnNumber

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

ArrowFunctionExpression::getStartLineNumber

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

ArrowFunctionExpression::__all__

Data constraint method.

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

ArrowFunctionExpression::getLocation

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

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

ArrowFunctionExpression::getKind

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

ArrowFunctionExpression::getAModifier

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

ArrowFunctionExpression::getAnAncestor

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

ArrowFunctionExpression::getEnclosingFunction

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

ArrowFunctionExpression::getADescendant

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

ArrowFunctionExpression::getALeadingComment

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

ArrowFunctionExpression::getFile

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

ArrowFunctionExpression::getModifier

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

ArrowFunctionExpression::getText

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

ArrowFunctionExpression::getAComment

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

ArrowFunctionExpression::getADecorator

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