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.
*/
- Parameter
self
:UnknownKeyword
- Return
Symbol
pub fn getSymbol(self: UnknownKeyword) -> Symbol;
UnknownKeyword::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:UnknownKeyword
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: UnknownKeyword) -> *FunctionLikeDeclaration;
UnknownKeyword::getIndex
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getIndex(self: UnknownKeyword) -> int;
UnknownKeyword::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getParentOid(self: UnknownKeyword) -> int;
UnknownKeyword::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
string
pub fn getRelativePath(self: UnknownKeyword) -> string;
UnknownKeyword::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:UnknownKeyword
- Return
Node
pub fn getLastChild(self: UnknownKeyword) -> Node;
UnknownKeyword::getEndColumnNumber
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getEndColumnNumber(self: UnknownKeyword) -> int;
UnknownKeyword::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
Node
pub fn getParent(self: UnknownKeyword) -> Node;
UnknownKeyword::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getChildCount(self: UnknownKeyword) -> int;
UnknownKeyword::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:UnknownKeyword
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: UnknownKeyword, i: int) -> Decorator;
UnknownKeyword::getEndLineNumber
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getEndLineNumber(self: UnknownKeyword) -> int;
UnknownKeyword::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:UnknownKeyword
- Return
*Comment
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.
*/
- Parameter
self
:UnknownKeyword
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: UnknownKeyword, level: int) -> Node;
UnknownKeyword::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:UnknownKeyword
- Parameter
i
:int
- Return
Node
pub fn getChild(self: UnknownKeyword, i: int) -> Node;
UnknownKeyword::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
TopLevelDO
pub fn getRoot(self: UnknownKeyword) -> TopLevelDO;
UnknownKeyword::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
*Node
pub fn getAChild(self: UnknownKeyword) -> *Node;
UnknownKeyword::getStartColumnNumber
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getStartColumnNumber(self: UnknownKeyword) -> int;
UnknownKeyword::getStartLineNumber
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getStartLineNumber(self: UnknownKeyword) -> int;
UnknownKeyword::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*UnknownKeyword
pub fn __all__(db: JavascriptDB) -> *UnknownKeyword;
UnknownKeyword::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
Location
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.
*/
- Parameter
self
:UnknownKeyword
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: UnknownKeyword, level: int) -> *Node;
UnknownKeyword::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:UnknownKeyword
- Return
int
pub fn getKind(self: UnknownKeyword) -> int;
UnknownKeyword::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:UnknownKeyword
- Return
*Modifier
pub fn getAModifier(self: UnknownKeyword) -> *Modifier;
UnknownKeyword::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
*Node
pub fn getAnAncestor(self: UnknownKeyword) -> *Node;
UnknownKeyword::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:UnknownKeyword
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: UnknownKeyword) -> FunctionLikeDeclaration;
UnknownKeyword::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
*Node
pub fn getADescendant(self: UnknownKeyword) -> *Node;
UnknownKeyword::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:UnknownKeyword
- Return
*Comment
pub fn getALeadingComment(self: UnknownKeyword) -> *Comment;
UnknownKeyword::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
File
pub fn getFile(self: UnknownKeyword) -> File;
UnknownKeyword::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:UnknownKeyword
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: UnknownKeyword, i: int) -> Modifier;
UnknownKeyword::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:UnknownKeyword
- Return
string
pub fn getText(self: UnknownKeyword) -> string;
UnknownKeyword::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:UnknownKeyword
- Return
*Comment
pub fn getAComment(self: UnknownKeyword) -> *Comment;
UnknownKeyword::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:UnknownKeyword
- Return
*Decorator
pub fn getADecorator(self: UnknownKeyword) -> *Decorator;