RightShiftExpression

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

Inherit from ShiftExpression

Primary key: id: int

schema RightShiftExpression extends ShiftExpression { @primary id: int } 

RightShiftExpression::getAnAncestor

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

RightShiftExpression::getLeft

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

RightShiftExpression::getLeftOperand

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

RightShiftExpression::getModifier

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

RightShiftExpression::getText

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

RightShiftExpression::getAComment

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

RightShiftExpression::getADecorator

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

RightShiftExpression::getADescendant

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

RightShiftExpression::getEnclosingFunction

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

RightShiftExpression::getParentOid

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

RightShiftExpression::getRoot

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

RightShiftExpression::getSymbol

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

RightShiftExpression::getAnAncestorEnclosingFunction

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

RightShiftExpression::getRelativePath

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

RightShiftExpression::getIndex

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

RightShiftExpression::getChildCount

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

RightShiftExpression::getStartLineNumber

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

RightShiftExpression::getAnOperand

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

RightShiftExpression::getAChild

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

RightShiftExpression::getStartColumnNumber

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

RightShiftExpression::getEndLineNumber

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

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

RightShiftExpression::getATrailingComment

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

RightShiftExpression::__all__

Data constraint method.

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

RightShiftExpression::getLocation

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

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

RightShiftExpression::getALeadingComment

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

RightShiftExpression::getFile

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

RightShiftExpression::getDecorator

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

RightShiftExpression::getRightOperand

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

RightShiftExpression::getChild

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

RightShiftExpression::getRight

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

RightShiftExpression::getOperator

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

RightShiftExpression::getAModifier

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

RightShiftExpression::getKind

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

RightShiftExpression::getEndColumnNumber

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

RightShiftExpression::getParent

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

RightShiftExpression::getLastChild

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