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