FunctionTypeNode

/**
* A function type node.
*/

Inherit from TypeNode

Primary key: id: int

schema FunctionTypeNode extends TypeNode {
  @primary id: int
}

FunctionTypeNode::getSymbol

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

FunctionTypeNode::getAnAncestorEnclosingFunction

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

FunctionTypeNode::getIndex

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

FunctionTypeNode::getParentOid

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

FunctionTypeNode::getRelativePath

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

FunctionTypeNode::getLastChild

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

FunctionTypeNode::getEndColumnNumber

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

FunctionTypeNode::getParent

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

FunctionTypeNode::getChildCount

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

FunctionTypeNode::getDecorator

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

FunctionTypeNode::getEndLineNumber

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

FunctionTypeNode::getATrailingComment

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

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

FunctionTypeNode::getChild

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

FunctionTypeNode::getRoot

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

FunctionTypeNode::getAChild

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

FunctionTypeNode::getStartColumnNumber

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

FunctionTypeNode::getStartLineNumber

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

FunctionTypeNode::__all__

Data constraint method.

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

FunctionTypeNode::getLocation

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

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

FunctionTypeNode::getKind

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

FunctionTypeNode::getAModifier

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

FunctionTypeNode::getAnAncestor

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

FunctionTypeNode::getEnclosingFunction

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

FunctionTypeNode::getADescendant

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

FunctionTypeNode::getALeadingComment

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

FunctionTypeNode::getFile

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

FunctionTypeNode::getModifier

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

FunctionTypeNode::getText

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

FunctionTypeNode::getAComment

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

FunctionTypeNode::getADecorator

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