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