AssignmentExpression

/**
* An assignment expression, either compound or simple.
*/

Inherit from BinaryExpression

Primary key: id: int

schema AssignmentExpression extends BinaryExpression {
  @primary id: int
}

AssignmentExpression::getFile

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

AssignmentExpression::getALeadingComment

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

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

AssignmentExpression::getATrailingComment

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

AssignmentExpression::getEndLineNumber

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

AssignmentExpression::getStartLineNumber

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

AssignmentExpression::getStartColumnNumber

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

AssignmentExpression::getAChild

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

AssignmentExpression::getAnOperand

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

AssignmentExpression::getChildCount

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

AssignmentExpression::getChild

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

AssignmentExpression::getRight

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

AssignmentExpression::getRightOperand

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

AssignmentExpression::getDecorator

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

AssignmentExpression::getOperator

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

AssignmentExpression::getKind

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

AssignmentExpression::getAModifier

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

AssignmentExpression::__all__

Data constraint method.

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

AssignmentExpression::getLocation

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

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

AssignmentExpression::getEndColumnNumber

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

AssignmentExpression::getParent

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

AssignmentExpression::getLastChild

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

AssignmentExpression::getIndex

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

AssignmentExpression::getRelativePath

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

AssignmentExpression::getAnAncestorEnclosingFunction

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

AssignmentExpression::getSymbol

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

AssignmentExpression::getRoot

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

AssignmentExpression::getParentOid

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

AssignmentExpression::getEnclosingFunction

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

AssignmentExpression::getADescendant

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

AssignmentExpression::getADecorator

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

AssignmentExpression::getAComment

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

AssignmentExpression::getText

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

AssignmentExpression::getModifier

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

AssignmentExpression::getLeftOperand

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

AssignmentExpression::getLeft

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

AssignmentExpression::getAnAncestor

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