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