BinaryBitwiseExpression

/**
* A binary bitwise expression using `&`, `|` or `^`.
*/

Inherit from BinaryExpression

Primary key: id: int

schema BinaryBitwiseExpression extends BinaryExpression {
  @primary id: int
}

BinaryBitwiseExpression::getFile

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

BinaryBitwiseExpression::getALeadingComment

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

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

BinaryBitwiseExpression::getATrailingComment

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

BinaryBitwiseExpression::getEndLineNumber

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

BinaryBitwiseExpression::getStartLineNumber

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

BinaryBitwiseExpression::getStartColumnNumber

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

BinaryBitwiseExpression::getAChild

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

BinaryBitwiseExpression::getAnOperand

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

BinaryBitwiseExpression::getChildCount

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

BinaryBitwiseExpression::getChild

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

BinaryBitwiseExpression::getRight

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

BinaryBitwiseExpression::getRightOperand

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

BinaryBitwiseExpression::getDecorator

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

BinaryBitwiseExpression::getOperator

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

BinaryBitwiseExpression::getKind

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

BinaryBitwiseExpression::getAModifier

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

BinaryBitwiseExpression::__all__

Data constraint method.

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

BinaryBitwiseExpression::getLocation

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

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

BinaryBitwiseExpression::getEndColumnNumber

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

BinaryBitwiseExpression::getParent

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

BinaryBitwiseExpression::getLastChild

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

BinaryBitwiseExpression::getIndex

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

BinaryBitwiseExpression::getRelativePath

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

BinaryBitwiseExpression::getAnAncestorEnclosingFunction

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

BinaryBitwiseExpression::getSymbol

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

BinaryBitwiseExpression::getRoot

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

BinaryBitwiseExpression::getParentOid

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

BinaryBitwiseExpression::getEnclosingFunction

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

BinaryBitwiseExpression::getADescendant

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

BinaryBitwiseExpression::getADecorator

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

BinaryBitwiseExpression::getAComment

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

BinaryBitwiseExpression::getText

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

BinaryBitwiseExpression::getModifier

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

BinaryBitwiseExpression::getLeftOperand

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

BinaryBitwiseExpression::getLeft

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

BinaryBitwiseExpression::getAnAncestor

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