UnknownKeyword

/**
* An `unknown` keyword.
*/

Inherit from Token

Primary key: id: int

schema UnknownKeyword extends Token {
  @primary id: int
}

UnknownKeyword::getSymbol

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

UnknownKeyword::getAnAncestorEnclosingFunction

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

UnknownKeyword::getIndex

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

UnknownKeyword::getParentOid

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

UnknownKeyword::getRelativePath

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

UnknownKeyword::getLastChild

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

UnknownKeyword::getEndColumnNumber

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

UnknownKeyword::getParent

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

UnknownKeyword::getChildCount

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

UnknownKeyword::getDecorator

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

UnknownKeyword::getEndLineNumber

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

UnknownKeyword::getATrailingComment

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

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

UnknownKeyword::getChild

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

UnknownKeyword::getRoot

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

UnknownKeyword::getAChild

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

UnknownKeyword::getStartColumnNumber

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

UnknownKeyword::getStartLineNumber

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

UnknownKeyword::__all__

Data constraint method.

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

UnknownKeyword::getLocation

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

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

UnknownKeyword::getKind

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

UnknownKeyword::getAModifier

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

UnknownKeyword::getAnAncestor

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

UnknownKeyword::getEnclosingFunction

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

UnknownKeyword::getADescendant

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

UnknownKeyword::getALeadingComment

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

UnknownKeyword::getFile

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

UnknownKeyword::getModifier

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

UnknownKeyword::getText

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

UnknownKeyword::getAComment

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

UnknownKeyword::getADecorator

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