BigIntKeyword

/**
* A `bigint` keyword.
*/

Inherit from Token

Primary key: id: int

schema BigIntKeyword extends Token {
  @primary id: int
}

BigIntKeyword::getSymbol

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

BigIntKeyword::getAnAncestorEnclosingFunction

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

BigIntKeyword::getIndex

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

BigIntKeyword::getParentOid

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

BigIntKeyword::getRelativePath

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

BigIntKeyword::getLastChild

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

BigIntKeyword::getEndColumnNumber

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

BigIntKeyword::getParent

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

BigIntKeyword::getChildCount

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

BigIntKeyword::getDecorator

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

BigIntKeyword::getEndLineNumber

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

BigIntKeyword::getATrailingComment

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

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

BigIntKeyword::getChild

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

BigIntKeyword::getRoot

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

BigIntKeyword::getAChild

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

BigIntKeyword::getStartColumnNumber

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

BigIntKeyword::getStartLineNumber

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

BigIntKeyword::__all__

Data constraint method.

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

BigIntKeyword::getLocation

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

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

BigIntKeyword::getKind

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

BigIntKeyword::getAModifier

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

BigIntKeyword::getAnAncestor

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

BigIntKeyword::getEnclosingFunction

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

BigIntKeyword::getADescendant

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

BigIntKeyword::getALeadingComment

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

BigIntKeyword::getFile

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

BigIntKeyword::getModifier

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

BigIntKeyword::getText

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

BigIntKeyword::getAComment

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

BigIntKeyword::getADecorator

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