VoidKeyword

/**
* A `void` keyword.
*/

Inherit from Token

Primary key: id: int

schema VoidKeyword extends Token {
  @primary id: int
}

VoidKeyword::getSymbol

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

VoidKeyword::getAnAncestorEnclosingFunction

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

VoidKeyword::getIndex

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

VoidKeyword::getParentOid

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

VoidKeyword::getRelativePath

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

VoidKeyword::getLastChild

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

VoidKeyword::getEndColumnNumber

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

VoidKeyword::getParent

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

VoidKeyword::getChildCount

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

VoidKeyword::getDecorator

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

VoidKeyword::getEndLineNumber

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

VoidKeyword::getATrailingComment

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

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

VoidKeyword::getChild

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

VoidKeyword::getRoot

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

VoidKeyword::getAChild

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

VoidKeyword::getStartColumnNumber

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

VoidKeyword::getStartLineNumber

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

VoidKeyword::__all__

Data constraint method.

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

VoidKeyword::getLocation

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

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

VoidKeyword::getKind

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

VoidKeyword::getAModifier

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

VoidKeyword::getAnAncestor

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

VoidKeyword::getEnclosingFunction

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

VoidKeyword::getADescendant

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

VoidKeyword::getALeadingComment

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

VoidKeyword::getFile

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

VoidKeyword::getModifier

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

VoidKeyword::getText

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

VoidKeyword::getAComment

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

VoidKeyword::getADecorator

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