ShiftExpression

/**
* A shift expression using `<<`, `>>` or `>>>`.
*/

Inherit from BinaryExpression

Primary key: id: int

schema ShiftExpression extends BinaryExpression {
  @primary id: int
}

ShiftExpression::getFile

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

ShiftExpression::getALeadingComment

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

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

ShiftExpression::getATrailingComment

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

ShiftExpression::getEndLineNumber

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

ShiftExpression::getStartLineNumber

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

ShiftExpression::getStartColumnNumber

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

ShiftExpression::getAChild

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

ShiftExpression::getAnOperand

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

ShiftExpression::getChildCount

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

ShiftExpression::getChild

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

ShiftExpression::getRight

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

ShiftExpression::getRightOperand

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

ShiftExpression::getDecorator

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

ShiftExpression::getOperator

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

ShiftExpression::getKind

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

ShiftExpression::getAModifier

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

ShiftExpression::__all__

Data constraint method.

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

ShiftExpression::getLocation

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

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

ShiftExpression::getEndColumnNumber

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

ShiftExpression::getParent

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

ShiftExpression::getLastChild

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

ShiftExpression::getIndex

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

ShiftExpression::getRelativePath

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

ShiftExpression::getAnAncestorEnclosingFunction

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

ShiftExpression::getSymbol

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

ShiftExpression::getRoot

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

ShiftExpression::getParentOid

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

ShiftExpression::getEnclosingFunction

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

ShiftExpression::getADescendant

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

ShiftExpression::getADecorator

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

ShiftExpression::getAComment

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

ShiftExpression::getText

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

ShiftExpression::getModifier

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

ShiftExpression::getLeftOperand

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

ShiftExpression::getLeft

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

ShiftExpression::getAnAncestor

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