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