BitwiseXorExpression

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

Inherit from BinaryBitwiseExpression

Primary key: id: int

schema BitwiseXorExpression extends BinaryBitwiseExpression {
  @primary id: int
}

BitwiseXorExpression::getAnAncestor

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

BitwiseXorExpression::getLeft

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

BitwiseXorExpression::getLeftOperand

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

BitwiseXorExpression::getModifier

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

BitwiseXorExpression::getText

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

BitwiseXorExpression::getAComment

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

BitwiseXorExpression::getADecorator

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

BitwiseXorExpression::getADescendant

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

BitwiseXorExpression::getEnclosingFunction

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

BitwiseXorExpression::getParentOid

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

BitwiseXorExpression::getRoot

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

BitwiseXorExpression::getSymbol

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

BitwiseXorExpression::getAnAncestorEnclosingFunction

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

BitwiseXorExpression::getRelativePath

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

BitwiseXorExpression::getIndex

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

BitwiseXorExpression::getChildCount

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

BitwiseXorExpression::getStartLineNumber

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

BitwiseXorExpression::getAnOperand

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

BitwiseXorExpression::getAChild

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

BitwiseXorExpression::getStartColumnNumber

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

BitwiseXorExpression::getEndLineNumber

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

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

BitwiseXorExpression::getATrailingComment

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

BitwiseXorExpression::__all__

Data constraint method.

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

BitwiseXorExpression::getLocation

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

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

BitwiseXorExpression::getALeadingComment

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

BitwiseXorExpression::getFile

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

BitwiseXorExpression::getDecorator

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

BitwiseXorExpression::getRightOperand

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

BitwiseXorExpression::getChild

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

BitwiseXorExpression::getRight

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

BitwiseXorExpression::getOperator

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

BitwiseXorExpression::getAModifier

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

BitwiseXorExpression::getKind

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

BitwiseXorExpression::getEndColumnNumber

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

BitwiseXorExpression::getParent

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

BitwiseXorExpression::getLastChild

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