NumberKeyword

/**
* A `number` keyword.
*/

Inherit from Token

Primary key: id: int

schema NumberKeyword extends Token {
  @primary id: int
}

NumberKeyword::getSymbol

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

NumberKeyword::getAnAncestorEnclosingFunction

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

NumberKeyword::getIndex

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

NumberKeyword::getParentOid

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

NumberKeyword::getRelativePath

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

NumberKeyword::getLastChild

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

NumberKeyword::getEndColumnNumber

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

NumberKeyword::getParent

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

NumberKeyword::getChildCount

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

NumberKeyword::getDecorator

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

NumberKeyword::getEndLineNumber

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

NumberKeyword::getATrailingComment

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

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

NumberKeyword::getChild

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

NumberKeyword::getRoot

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

NumberKeyword::getAChild

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

NumberKeyword::getStartColumnNumber

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

NumberKeyword::getStartLineNumber

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

NumberKeyword::__all__

Data constraint method.

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

NumberKeyword::getLocation

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

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

NumberKeyword::getKind

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

NumberKeyword::getAModifier

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

NumberKeyword::getAnAncestor

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

NumberKeyword::getEnclosingFunction

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

NumberKeyword::getADescendant

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

NumberKeyword::getALeadingComment

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

NumberKeyword::getFile

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

NumberKeyword::getModifier

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

NumberKeyword::getText

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

NumberKeyword::getAComment

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

NumberKeyword::getADecorator

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