UnsignedRightShiftExpression

/**
* A unsigned right-shift expression using `>>>`.
*/

Inherit from ShiftExpression

Primary key: id: int

schema UnsignedRightShiftExpression extends ShiftExpression {
  @primary id: int
}

UnsignedRightShiftExpression::getAnAncestor

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

UnsignedRightShiftExpression::getLeft

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

UnsignedRightShiftExpression::getLeftOperand

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

UnsignedRightShiftExpression::getModifier

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

UnsignedRightShiftExpression::getText

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

UnsignedRightShiftExpression::getAComment

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

UnsignedRightShiftExpression::getADecorator

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

UnsignedRightShiftExpression::getADescendant

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

UnsignedRightShiftExpression::getEnclosingFunction

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

UnsignedRightShiftExpression::getParentOid

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

UnsignedRightShiftExpression::getRoot

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

UnsignedRightShiftExpression::getSymbol

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

UnsignedRightShiftExpression::getAnAncestorEnclosingFunction

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

UnsignedRightShiftExpression::getRelativePath

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

UnsignedRightShiftExpression::getIndex

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

UnsignedRightShiftExpression::getChildCount

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

UnsignedRightShiftExpression::getStartLineNumber

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

UnsignedRightShiftExpression::getAnOperand

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

UnsignedRightShiftExpression::getAChild

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

UnsignedRightShiftExpression::getStartColumnNumber

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

UnsignedRightShiftExpression::getEndLineNumber

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

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

UnsignedRightShiftExpression::getATrailingComment

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

UnsignedRightShiftExpression::__all__

Data constraint method.

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

UnsignedRightShiftExpression::getLocation

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

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

UnsignedRightShiftExpression::getALeadingComment

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

UnsignedRightShiftExpression::getFile

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

UnsignedRightShiftExpression::getDecorator

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

UnsignedRightShiftExpression::getRightOperand

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

UnsignedRightShiftExpression::getChild

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

UnsignedRightShiftExpression::getRight

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

UnsignedRightShiftExpression::getOperator

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

UnsignedRightShiftExpression::getAModifier

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

UnsignedRightShiftExpression::getKind

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

UnsignedRightShiftExpression::getEndColumnNumber

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

UnsignedRightShiftExpression::getParent

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

UnsignedRightShiftExpression::getLastChild

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