MinusEqualsToken

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

Inherit from Token

Primary key: id: int

schema MinusEqualsToken extends Token {
  @primary id: int
}

MinusEqualsToken::getSymbol

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

MinusEqualsToken::getAnAncestorEnclosingFunction

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

MinusEqualsToken::getIndex

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

MinusEqualsToken::getParentOid

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

MinusEqualsToken::getRelativePath

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

MinusEqualsToken::getLastChild

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

MinusEqualsToken::getEndColumnNumber

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

MinusEqualsToken::getParent

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

MinusEqualsToken::getChildCount

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

MinusEqualsToken::getDecorator

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

MinusEqualsToken::getEndLineNumber

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

MinusEqualsToken::getATrailingComment

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

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

MinusEqualsToken::getChild

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

MinusEqualsToken::getRoot

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

MinusEqualsToken::getAChild

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

MinusEqualsToken::getStartColumnNumber

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

MinusEqualsToken::getStartLineNumber

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

MinusEqualsToken::__all__

Data constraint method.

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

MinusEqualsToken::getLocation

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

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

MinusEqualsToken::getKind

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

MinusEqualsToken::getAModifier

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

MinusEqualsToken::getAnAncestor

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

MinusEqualsToken::getEnclosingFunction

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

MinusEqualsToken::getADescendant

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

MinusEqualsToken::getALeadingComment

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

MinusEqualsToken::getFile

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

MinusEqualsToken::getModifier

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

MinusEqualsToken::getText

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

MinusEqualsToken::getAComment

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

MinusEqualsToken::getADecorator

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