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.
*/
pub fn getSymbol(self: SuperKeyword) -> Symbol;

SuperKeyword::getAnAncestorEnclosingFunction

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

SuperKeyword::getIndex

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

SuperKeyword::getParentOid

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

SuperKeyword::getRelativePath

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

SuperKeyword::getLastChild

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

SuperKeyword::getEndColumnNumber

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

SuperKeyword::getParent

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

SuperKeyword::getChildCount

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

SuperKeyword::getDecorator

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

SuperKeyword::getEndLineNumber

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

SuperKeyword::getATrailingComment

/**
* Gets the trailing comments of it
*/
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.
*/
pub fn getAnAncestorByLevel(self: SuperKeyword, level: int) -> Node;

SuperKeyword::getChild

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

SuperKeyword::getRoot

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

SuperKeyword::getAChild

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

SuperKeyword::getStartColumnNumber

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

SuperKeyword::getStartLineNumber

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

SuperKeyword::__all__

Data constraint method.

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

SuperKeyword::getLocation

/**
* Gets the location of this node.
*/
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.
*/
pub fn getADescendantByLevel(self: SuperKeyword, level: int) -> *Node;

SuperKeyword::getKind

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

SuperKeyword::getAModifier

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

SuperKeyword::getAnAncestor

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

SuperKeyword::getEnclosingFunction

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

SuperKeyword::getADescendant

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

SuperKeyword::getALeadingComment

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

SuperKeyword::getFile

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

SuperKeyword::getModifier

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

SuperKeyword::getText

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

SuperKeyword::getAComment

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

SuperKeyword::getADecorator

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