BitwiseXorAssignmentExpression

/**
* A bitwise XOR assignment expression using `^=`.
*/

Inherit from CompoundAssignmentExpression

Primary key: id: int

schema BitwiseXorAssignmentExpression extends CompoundAssignmentExpression {
  @primary id: int
}

BitwiseXorAssignmentExpression::getLastChild

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

BitwiseXorAssignmentExpression::getParent

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

BitwiseXorAssignmentExpression::getEndColumnNumber

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

BitwiseXorAssignmentExpression::getKind

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

BitwiseXorAssignmentExpression::getAModifier

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

BitwiseXorAssignmentExpression::getOperator

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

BitwiseXorAssignmentExpression::getRight

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

BitwiseXorAssignmentExpression::getChild

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

BitwiseXorAssignmentExpression::getRightOperand

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

BitwiseXorAssignmentExpression::getDecorator

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

BitwiseXorAssignmentExpression::getFile

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

BitwiseXorAssignmentExpression::getALeadingComment

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

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

BitwiseXorAssignmentExpression::getLocation

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

BitwiseXorAssignmentExpression::getATrailingComment

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

BitwiseXorAssignmentExpression::getParentOid

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

BitwiseXorAssignmentExpression::getADescendant

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

BitwiseXorAssignmentExpression::getEnclosingFunction

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

BitwiseXorAssignmentExpression::getRoot

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

BitwiseXorAssignmentExpression::getAnAncestor

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

BitwiseXorAssignmentExpression::__all__

Data constraint method.

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

BitwiseXorAssignmentExpression::getAComment

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

BitwiseXorAssignmentExpression::getADecorator

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

BitwiseXorAssignmentExpression::getLeft

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

BitwiseXorAssignmentExpression::getLeftOperand

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

BitwiseXorAssignmentExpression::getText

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

BitwiseXorAssignmentExpression::getModifier

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

BitwiseXorAssignmentExpression::getSymbol

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

BitwiseXorAssignmentExpression::getAnAncestorEnclosingFunction

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

BitwiseXorAssignmentExpression::getIndex

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

BitwiseXorAssignmentExpression::getRelativePath

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

BitwiseXorAssignmentExpression::getChildCount

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

BitwiseXorAssignmentExpression::getStartLineNumber

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

BitwiseXorAssignmentExpression::getAnOperand

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

BitwiseXorAssignmentExpression::getAChild

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

BitwiseXorAssignmentExpression::getStartColumnNumber

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

BitwiseXorAssignmentExpression::getEndLineNumber

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

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