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