UndefinedKeyword

/**
* An `undefined` keyword.
*/

Inherit from Token

Primary key: id: int

schema UndefinedKeyword extends Token {
  @primary id: int
}

UndefinedKeyword::getSymbol

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

UndefinedKeyword::getAnAncestorEnclosingFunction

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

UndefinedKeyword::getIndex

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

UndefinedKeyword::getParentOid

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

UndefinedKeyword::getRelativePath

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

UndefinedKeyword::getLastChild

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

UndefinedKeyword::getEndColumnNumber

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

UndefinedKeyword::getParent

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

UndefinedKeyword::getChildCount

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

UndefinedKeyword::getDecorator

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

UndefinedKeyword::getEndLineNumber

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

UndefinedKeyword::getATrailingComment

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

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

UndefinedKeyword::getChild

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

UndefinedKeyword::getRoot

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

UndefinedKeyword::getAChild

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

UndefinedKeyword::getStartColumnNumber

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

UndefinedKeyword::getStartLineNumber

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

UndefinedKeyword::__all__

Data constraint method.

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

UndefinedKeyword::getLocation

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

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

UndefinedKeyword::getKind

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

UndefinedKeyword::getAModifier

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

UndefinedKeyword::getAnAncestor

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

UndefinedKeyword::getEnclosingFunction

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

UndefinedKeyword::getADescendant

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

UndefinedKeyword::getALeadingComment

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

UndefinedKeyword::getFile

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

UndefinedKeyword::getModifier

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

UndefinedKeyword::getText

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

UndefinedKeyword::getAComment

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

UndefinedKeyword::getADecorator

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