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