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