SlashEqualsToken

/**
* A `/=` token.
*/

Inherit from Token

Primary key: id: int

schema SlashEqualsToken extends Token {
  @primary id: int
}

SlashEqualsToken::getSymbol

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

SlashEqualsToken::getAnAncestorEnclosingFunction

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

SlashEqualsToken::getIndex

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

SlashEqualsToken::getParentOid

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

SlashEqualsToken::getRelativePath

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

SlashEqualsToken::getLastChild

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

SlashEqualsToken::getEndColumnNumber

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

SlashEqualsToken::getParent

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

SlashEqualsToken::getChildCount

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

SlashEqualsToken::getDecorator

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

SlashEqualsToken::getEndLineNumber

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

SlashEqualsToken::getATrailingComment

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

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

SlashEqualsToken::getChild

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

SlashEqualsToken::getRoot

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

SlashEqualsToken::getAChild

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

SlashEqualsToken::getStartColumnNumber

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

SlashEqualsToken::getStartLineNumber

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

SlashEqualsToken::__all__

Data constraint method.

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

SlashEqualsToken::getLocation

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

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

SlashEqualsToken::getKind

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

SlashEqualsToken::getAModifier

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

SlashEqualsToken::getAnAncestor

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

SlashEqualsToken::getEnclosingFunction

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

SlashEqualsToken::getADescendant

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

SlashEqualsToken::getALeadingComment

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

SlashEqualsToken::getFile

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

SlashEqualsToken::getModifier

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

SlashEqualsToken::getText

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

SlashEqualsToken::getAComment

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

SlashEqualsToken::getADecorator

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