UnsignedRightShiftAssignmentExpression

/**
* An unsigned right shift assignment expression using `>>>=`.
*/

Inherit from CompoundAssignmentExpression

Primary key: id: int

schema UnsignedRightShiftAssignmentExpression extends CompoundAssignmentExpression {
  @primary id: int
}

UnsignedRightShiftAssignmentExpression::getLastChild

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

UnsignedRightShiftAssignmentExpression::getParent

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

UnsignedRightShiftAssignmentExpression::getEndColumnNumber

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

UnsignedRightShiftAssignmentExpression::getKind

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

UnsignedRightShiftAssignmentExpression::getAModifier

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

UnsignedRightShiftAssignmentExpression::getOperator

/**
* Get the operator of this binary expression.
*/
pub fn getOperator(self: UnsignedRightShiftAssignmentExpression) -> BinaryOperator;

UnsignedRightShiftAssignmentExpression::getRight

/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
pub fn getRight(self: UnsignedRightShiftAssignmentExpression) -> Expression;

UnsignedRightShiftAssignmentExpression::getChild

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

UnsignedRightShiftAssignmentExpression::getRightOperand

/**
* Get the right operand of this binary expression.
*/
pub fn getRightOperand(self: UnsignedRightShiftAssignmentExpression) -> Expression;

UnsignedRightShiftAssignmentExpression::getDecorator

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

UnsignedRightShiftAssignmentExpression::getFile

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

UnsignedRightShiftAssignmentExpression::getALeadingComment

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

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

UnsignedRightShiftAssignmentExpression::getLocation

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

UnsignedRightShiftAssignmentExpression::getATrailingComment

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

UnsignedRightShiftAssignmentExpression::getParentOid

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

UnsignedRightShiftAssignmentExpression::getADescendant

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

UnsignedRightShiftAssignmentExpression::getEnclosingFunction

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

UnsignedRightShiftAssignmentExpression::getRoot

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

UnsignedRightShiftAssignmentExpression::getAnAncestor

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

UnsignedRightShiftAssignmentExpression::__all__

Data constraint method.

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

UnsignedRightShiftAssignmentExpression::getAComment

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

UnsignedRightShiftAssignmentExpression::getADecorator

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

UnsignedRightShiftAssignmentExpression::getLeft

/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
pub fn getLeft(self: UnsignedRightShiftAssignmentExpression) -> Expression;

UnsignedRightShiftAssignmentExpression::getLeftOperand

/**
* Get the left operand of this binary expression.
*/
pub fn getLeftOperand(self: UnsignedRightShiftAssignmentExpression) -> Expression;

UnsignedRightShiftAssignmentExpression::getText

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

UnsignedRightShiftAssignmentExpression::getModifier

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

UnsignedRightShiftAssignmentExpression::getSymbol

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

UnsignedRightShiftAssignmentExpression::getAnAncestorEnclosingFunction

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

UnsignedRightShiftAssignmentExpression::getIndex

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

UnsignedRightShiftAssignmentExpression::getRelativePath

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

UnsignedRightShiftAssignmentExpression::getChildCount

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

UnsignedRightShiftAssignmentExpression::getStartLineNumber

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

UnsignedRightShiftAssignmentExpression::getAnOperand

pub fn getAnOperand(self: UnsignedRightShiftAssignmentExpression) -> *Expression;

UnsignedRightShiftAssignmentExpression::getAChild

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

UnsignedRightShiftAssignmentExpression::getStartColumnNumber

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

UnsignedRightShiftAssignmentExpression::getEndLineNumber

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

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