SubtractionAssignmentExpression

/**
* A subtraction assignment expression using `-=`.
*/

Inherit from CompoundAssignmentExpression

Primary key: id: int

schema SubtractionAssignmentExpression extends CompoundAssignmentExpression {
  @primary id: int
}

SubtractionAssignmentExpression::getLastChild

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

SubtractionAssignmentExpression::getParent

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

SubtractionAssignmentExpression::getEndColumnNumber

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

SubtractionAssignmentExpression::getKind

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

SubtractionAssignmentExpression::getAModifier

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

SubtractionAssignmentExpression::getOperator

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

SubtractionAssignmentExpression::getRight

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

SubtractionAssignmentExpression::getChild

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

SubtractionAssignmentExpression::getRightOperand

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

SubtractionAssignmentExpression::getDecorator

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

SubtractionAssignmentExpression::getFile

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

SubtractionAssignmentExpression::getALeadingComment

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

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

SubtractionAssignmentExpression::getLocation

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

SubtractionAssignmentExpression::getATrailingComment

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

SubtractionAssignmentExpression::getParentOid

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

SubtractionAssignmentExpression::getADescendant

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

SubtractionAssignmentExpression::getEnclosingFunction

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

SubtractionAssignmentExpression::getRoot

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

SubtractionAssignmentExpression::getAnAncestor

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

SubtractionAssignmentExpression::__all__

Data constraint method.

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

SubtractionAssignmentExpression::getAComment

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

SubtractionAssignmentExpression::getADecorator

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

SubtractionAssignmentExpression::getLeft

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

SubtractionAssignmentExpression::getLeftOperand

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

SubtractionAssignmentExpression::getText

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

SubtractionAssignmentExpression::getModifier

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

SubtractionAssignmentExpression::getSymbol

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

SubtractionAssignmentExpression::getAnAncestorEnclosingFunction

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

SubtractionAssignmentExpression::getIndex

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

SubtractionAssignmentExpression::getRelativePath

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

SubtractionAssignmentExpression::getChildCount

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

SubtractionAssignmentExpression::getStartLineNumber

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

SubtractionAssignmentExpression::getAnOperand

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

SubtractionAssignmentExpression::getAChild

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

SubtractionAssignmentExpression::getStartColumnNumber

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

SubtractionAssignmentExpression::getEndLineNumber

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

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