LeftShiftExpression

/**
* A left-shift expression using `<<`.
*/

Inherit from ShiftExpression

Primary key: id: int

schema LeftShiftExpression extends ShiftExpression {
  @primary id: int
}

LeftShiftExpression::getAnAncestor

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

LeftShiftExpression::getLeft

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

LeftShiftExpression::getLeftOperand

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

LeftShiftExpression::getModifier

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

LeftShiftExpression::getText

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

LeftShiftExpression::getAComment

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

LeftShiftExpression::getADecorator

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

LeftShiftExpression::getADescendant

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

LeftShiftExpression::getEnclosingFunction

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

LeftShiftExpression::getParentOid

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

LeftShiftExpression::getRoot

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

LeftShiftExpression::getSymbol

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

LeftShiftExpression::getAnAncestorEnclosingFunction

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

LeftShiftExpression::getRelativePath

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

LeftShiftExpression::getIndex

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

LeftShiftExpression::getChildCount

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

LeftShiftExpression::getStartLineNumber

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

LeftShiftExpression::getAnOperand

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

LeftShiftExpression::getAChild

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

LeftShiftExpression::getStartColumnNumber

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

LeftShiftExpression::getEndLineNumber

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

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

LeftShiftExpression::getATrailingComment

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

LeftShiftExpression::__all__

Data constraint method.

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

LeftShiftExpression::getLocation

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

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

LeftShiftExpression::getALeadingComment

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

LeftShiftExpression::getFile

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

LeftShiftExpression::getDecorator

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

LeftShiftExpression::getRightOperand

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

LeftShiftExpression::getChild

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

LeftShiftExpression::getRight

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

LeftShiftExpression::getOperator

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

LeftShiftExpression::getAModifier

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

LeftShiftExpression::getKind

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

LeftShiftExpression::getEndColumnNumber

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

LeftShiftExpression::getParent

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

LeftShiftExpression::getLastChild

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