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