NeverKeyword

/**
* A `never` keyword.
*/

Inherit from Token

Primary key: id: int

schema NeverKeyword extends Token {
  @primary id: int
}

NeverKeyword::getSymbol

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

NeverKeyword::getAnAncestorEnclosingFunction

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

NeverKeyword::getIndex

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

NeverKeyword::getParentOid

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

NeverKeyword::getRelativePath

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

NeverKeyword::getLastChild

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

NeverKeyword::getEndColumnNumber

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

NeverKeyword::getParent

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

NeverKeyword::getChildCount

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

NeverKeyword::getDecorator

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

NeverKeyword::getEndLineNumber

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

NeverKeyword::getATrailingComment

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

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

NeverKeyword::getChild

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

NeverKeyword::getRoot

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

NeverKeyword::getAChild

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

NeverKeyword::getStartColumnNumber

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

NeverKeyword::getStartLineNumber

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

NeverKeyword::__all__

Data constraint method.

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

NeverKeyword::getLocation

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

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

NeverKeyword::getKind

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

NeverKeyword::getAModifier

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

NeverKeyword::getAnAncestor

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

NeverKeyword::getEnclosingFunction

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

NeverKeyword::getADescendant

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

NeverKeyword::getALeadingComment

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

NeverKeyword::getFile

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

NeverKeyword::getModifier

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

NeverKeyword::getText

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

NeverKeyword::getAComment

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

NeverKeyword::getADecorator

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