SymbolKeyword

/**
* A `symbol` keyword.
*/

Inherit from Token

Primary key: id: int

schema SymbolKeyword extends Token {
  @primary id: int
}

SymbolKeyword::getSymbol

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

SymbolKeyword::getAnAncestorEnclosingFunction

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

SymbolKeyword::getIndex

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

SymbolKeyword::getParentOid

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

SymbolKeyword::getRelativePath

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

SymbolKeyword::getLastChild

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

SymbolKeyword::getEndColumnNumber

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

SymbolKeyword::getParent

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

SymbolKeyword::getChildCount

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

SymbolKeyword::getDecorator

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

SymbolKeyword::getEndLineNumber

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

SymbolKeyword::getATrailingComment

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

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

SymbolKeyword::getChild

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

SymbolKeyword::getRoot

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

SymbolKeyword::getAChild

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

SymbolKeyword::getStartColumnNumber

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

SymbolKeyword::getStartLineNumber

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

SymbolKeyword::__all__

Data constraint method.

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

SymbolKeyword::getLocation

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

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

SymbolKeyword::getKind

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

SymbolKeyword::getAModifier

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

SymbolKeyword::getAnAncestor

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

SymbolKeyword::getEnclosingFunction

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

SymbolKeyword::getADescendant

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

SymbolKeyword::getALeadingComment

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

SymbolKeyword::getFile

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

SymbolKeyword::getModifier

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

SymbolKeyword::getText

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

SymbolKeyword::getAComment

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

SymbolKeyword::getADecorator

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