AnyKeyword

/** * An `any` keyword. */ 

Inherit from Token

Primary key: id: int

schema AnyKeyword extends Token { @primary id: int } 

AnyKeyword::getSymbol

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

AnyKeyword::getAnAncestorEnclosingFunction

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

AnyKeyword::getIndex

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

AnyKeyword::getParentOid

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

AnyKeyword::getRelativePath

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

AnyKeyword::getLastChild

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

AnyKeyword::getEndColumnNumber

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

AnyKeyword::getParent

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

AnyKeyword::getChildCount

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

AnyKeyword::getDecorator

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

AnyKeyword::getEndLineNumber

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

AnyKeyword::getATrailingComment

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

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

AnyKeyword::getChild

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

AnyKeyword::getRoot

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

AnyKeyword::getAChild

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

AnyKeyword::getStartColumnNumber

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

AnyKeyword::getStartLineNumber

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

AnyKeyword::__all__

Data constraint method.

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

AnyKeyword::getLocation

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

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

AnyKeyword::getKind

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

AnyKeyword::getAModifier

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

AnyKeyword::getAnAncestor

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

AnyKeyword::getEnclosingFunction

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

AnyKeyword::getADescendant

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

AnyKeyword::getALeadingComment

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

AnyKeyword::getFile

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

AnyKeyword::getModifier

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

AnyKeyword::getText

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

AnyKeyword::getAComment

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

AnyKeyword::getADecorator

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