LeftShiftAssignmentExpression
/**
* A left shift assignment expression using `<<=`.
*/
Inherit from CompoundAssignmentExpression
Primary key: id: int
schema LeftShiftAssignmentExpression extends CompoundAssignmentExpression {
@primary id: int
}
LeftShiftAssignmentExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Node
pub fn getLastChild(self: LeftShiftAssignmentExpression) -> Node;
LeftShiftAssignmentExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Node
pub fn getParent(self: LeftShiftAssignmentExpression) -> Node;
LeftShiftAssignmentExpression::getEndColumnNumber
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getEndColumnNumber(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getKind(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Modifier
pub fn getAModifier(self: LeftShiftAssignmentExpression) -> *Modifier;
LeftShiftAssignmentExpression::getOperator
/**
* Get the operator of this binary expression.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
BinaryOperator
pub fn getOperator(self: LeftShiftAssignmentExpression) -> BinaryOperator;
LeftShiftAssignmentExpression::getRight
/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Expression
pub fn getRight(self: LeftShiftAssignmentExpression) -> Expression;
LeftShiftAssignmentExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: LeftShiftAssignmentExpression, i: int) -> Node;
LeftShiftAssignmentExpression::getRightOperand
/**
* Get the right operand of this binary expression.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Expression
pub fn getRightOperand(self: LeftShiftAssignmentExpression) -> Expression;
LeftShiftAssignmentExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: LeftShiftAssignmentExpression, i: int) -> Decorator;
LeftShiftAssignmentExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
File
pub fn getFile(self: LeftShiftAssignmentExpression) -> File;
LeftShiftAssignmentExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Comment
pub fn getALeadingComment(self: LeftShiftAssignmentExpression) -> *Comment;
LeftShiftAssignmentExpression::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.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: LeftShiftAssignmentExpression, level: int) -> *Node;
LeftShiftAssignmentExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Location
pub fn getLocation(self: LeftShiftAssignmentExpression) -> Location;
LeftShiftAssignmentExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Comment
pub fn getATrailingComment(self: LeftShiftAssignmentExpression) -> *Comment;
LeftShiftAssignmentExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getParentOid(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Node
pub fn getADescendant(self: LeftShiftAssignmentExpression) -> *Node;
LeftShiftAssignmentExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: LeftShiftAssignmentExpression) -> FunctionLikeDeclaration;
LeftShiftAssignmentExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
TopLevelDO
pub fn getRoot(self: LeftShiftAssignmentExpression) -> TopLevelDO;
LeftShiftAssignmentExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Node
pub fn getAnAncestor(self: LeftShiftAssignmentExpression) -> *Node;
LeftShiftAssignmentExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*LeftShiftAssignmentExpression
pub fn __all__(db: JavascriptDB) -> *LeftShiftAssignmentExpression;
LeftShiftAssignmentExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Comment
pub fn getAComment(self: LeftShiftAssignmentExpression) -> *Comment;
LeftShiftAssignmentExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Decorator
pub fn getADecorator(self: LeftShiftAssignmentExpression) -> *Decorator;
LeftShiftAssignmentExpression::getLeft
/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Expression
pub fn getLeft(self: LeftShiftAssignmentExpression) -> Expression;
LeftShiftAssignmentExpression::getLeftOperand
/**
* Get the left operand of this binary expression.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Expression
pub fn getLeftOperand(self: LeftShiftAssignmentExpression) -> Expression;
LeftShiftAssignmentExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
string
pub fn getText(self: LeftShiftAssignmentExpression) -> string;
LeftShiftAssignmentExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: LeftShiftAssignmentExpression, i: int) -> Modifier;
LeftShiftAssignmentExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
Symbol
pub fn getSymbol(self: LeftShiftAssignmentExpression) -> Symbol;
LeftShiftAssignmentExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: LeftShiftAssignmentExpression) -> *FunctionLikeDeclaration;
LeftShiftAssignmentExpression::getIndex
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getIndex(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
string
pub fn getRelativePath(self: LeftShiftAssignmentExpression) -> string;
LeftShiftAssignmentExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getChildCount(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getStartLineNumber
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getStartLineNumber(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getAnOperand
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Expression
pub fn getAnOperand(self: LeftShiftAssignmentExpression) -> *Expression;
LeftShiftAssignmentExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Return
*Node
pub fn getAChild(self: LeftShiftAssignmentExpression) -> *Node;
LeftShiftAssignmentExpression::getStartColumnNumber
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getStartColumnNumber(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::getEndLineNumber
- Parameter
self
:LeftShiftAssignmentExpression
- Return
int
pub fn getEndLineNumber(self: LeftShiftAssignmentExpression) -> int;
LeftShiftAssignmentExpression::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.
*/
- Parameter
self
:LeftShiftAssignmentExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: LeftShiftAssignmentExpression, level: int) -> Node;