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