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.
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Node
pub fn getAnAncestor(self: BitwiseXorExpression) -> *Node;
BitwiseXorExpression::getLeft
/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Expression
pub fn getLeft(self: BitwiseXorExpression) -> Expression;
BitwiseXorExpression::getLeftOperand
/**
* Get the left operand of this binary expression.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Expression
pub fn getLeftOperand(self: BitwiseXorExpression) -> Expression;
BitwiseXorExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:BitwiseXorExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: BitwiseXorExpression, i: int) -> Modifier;
BitwiseXorExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
string
pub fn getText(self: BitwiseXorExpression) -> string;
BitwiseXorExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Comment
pub fn getAComment(self: BitwiseXorExpression) -> *Comment;
BitwiseXorExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Decorator
pub fn getADecorator(self: BitwiseXorExpression) -> *Decorator;
BitwiseXorExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Node
pub fn getADescendant(self: BitwiseXorExpression) -> *Node;
BitwiseXorExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:BitwiseXorExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: BitwiseXorExpression) -> FunctionLikeDeclaration;
BitwiseXorExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getParentOid(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
TopLevelDO
pub fn getRoot(self: BitwiseXorExpression) -> TopLevelDO;
BitwiseXorExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Symbol
pub fn getSymbol(self: BitwiseXorExpression) -> Symbol;
BitwiseXorExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:BitwiseXorExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: BitwiseXorExpression) -> *FunctionLikeDeclaration;
BitwiseXorExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
string
pub fn getRelativePath(self: BitwiseXorExpression) -> string;
BitwiseXorExpression::getIndex
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getIndex(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getChildCount(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getStartLineNumber
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getStartLineNumber(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getAnOperand
- Parameter
self
:BitwiseXorExpression
- Return
*Expression
pub fn getAnOperand(self: BitwiseXorExpression) -> *Expression;
BitwiseXorExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Node
pub fn getAChild(self: BitwiseXorExpression) -> *Node;
BitwiseXorExpression::getStartColumnNumber
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getStartColumnNumber(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getEndLineNumber
- Parameter
self
:BitwiseXorExpression
- Return
int
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.
*/
- Parameter
self
:BitwiseXorExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: BitwiseXorExpression, level: int) -> Node;
BitwiseXorExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Comment
pub fn getATrailingComment(self: BitwiseXorExpression) -> *Comment;
BitwiseXorExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*BitwiseXorExpression
pub fn __all__(db: JavascriptDB) -> *BitwiseXorExpression;
BitwiseXorExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Location
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.
*/
- Parameter
self
:BitwiseXorExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: BitwiseXorExpression, level: int) -> *Node;
BitwiseXorExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Comment
pub fn getALeadingComment(self: BitwiseXorExpression) -> *Comment;
BitwiseXorExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
File
pub fn getFile(self: BitwiseXorExpression) -> File;
BitwiseXorExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:BitwiseXorExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: BitwiseXorExpression, i: int) -> Decorator;
BitwiseXorExpression::getRightOperand
/**
* Get the right operand of this binary expression.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Expression
pub fn getRightOperand(self: BitwiseXorExpression) -> Expression;
BitwiseXorExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: BitwiseXorExpression, i: int) -> Node;
BitwiseXorExpression::getRight
/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
- Parameter
self
:BitwiseXorExpression
- Return
Expression
pub fn getRight(self: BitwiseXorExpression) -> Expression;
BitwiseXorExpression::getOperator
/**
* Get the operator of this binary expression.
*/
- Parameter
self
:BitwiseXorExpression
- Return
BinaryOperator
pub fn getOperator(self: BitwiseXorExpression) -> BinaryOperator;
BitwiseXorExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:BitwiseXorExpression
- Return
*Modifier
pub fn getAModifier(self: BitwiseXorExpression) -> *Modifier;
BitwiseXorExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getKind(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getEndColumnNumber
- Parameter
self
:BitwiseXorExpression
- Return
int
pub fn getEndColumnNumber(self: BitwiseXorExpression) -> int;
BitwiseXorExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Node
pub fn getParent(self: BitwiseXorExpression) -> Node;
BitwiseXorExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:BitwiseXorExpression
- Return
Node
pub fn getLastChild(self: BitwiseXorExpression) -> Node;