PlusEqualsToken

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

Inherit from Token

Primary key: id: int

schema PlusEqualsToken extends Token { @primary id: int } 

PlusEqualsToken::getSymbol

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

PlusEqualsToken::getAnAncestorEnclosingFunction

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

PlusEqualsToken::getIndex

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

PlusEqualsToken::getParentOid

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

PlusEqualsToken::getRelativePath

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

PlusEqualsToken::getLastChild

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

PlusEqualsToken::getEndColumnNumber

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

PlusEqualsToken::getParent

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

PlusEqualsToken::getChildCount

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

PlusEqualsToken::getDecorator

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

PlusEqualsToken::getEndLineNumber

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

PlusEqualsToken::getATrailingComment

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

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

PlusEqualsToken::getChild

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

PlusEqualsToken::getRoot

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

PlusEqualsToken::getAChild

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

PlusEqualsToken::getStartColumnNumber

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

PlusEqualsToken::getStartLineNumber

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

PlusEqualsToken::__all__

Data constraint method.

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

PlusEqualsToken::getLocation

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

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

PlusEqualsToken::getKind

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

PlusEqualsToken::getAModifier

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

PlusEqualsToken::getAnAncestor

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

PlusEqualsToken::getEnclosingFunction

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

PlusEqualsToken::getADescendant

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

PlusEqualsToken::getALeadingComment

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

PlusEqualsToken::getFile

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

PlusEqualsToken::getModifier

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

PlusEqualsToken::getText

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

PlusEqualsToken::getAComment

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

PlusEqualsToken::getADecorator

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