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.
*/
pub fn getFile(self: RelationalExpression) -> File;

RelationalExpression::getALeadingComment

/**
* Gets the leading comments of it
*/
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.
*/
pub fn getAnAncestorByLevel(self: RelationalExpression, level: int) -> Node;

RelationalExpression::getATrailingComment

/**
* Gets the trailing comments of it
*/
pub fn getATrailingComment(self: RelationalExpression) -> *Comment;

RelationalExpression::getEndLineNumber

pub fn getEndLineNumber(self: RelationalExpression) -> int;

RelationalExpression::getStartLineNumber

pub fn getStartLineNumber(self: RelationalExpression) -> int;

RelationalExpression::getStartColumnNumber

pub fn getStartColumnNumber(self: RelationalExpression) -> int;

RelationalExpression::getAChild

/**
* Gets a child node of this node.
*/
pub fn getAChild(self: RelationalExpression) -> *Node;

RelationalExpression::getAnOperand

pub fn getAnOperand(self: RelationalExpression) -> *Expression;

RelationalExpression::getChildCount

/**
* Gets the number of child nodes.
*/
pub fn getChildCount(self: RelationalExpression) -> int;

RelationalExpression::getChild

/**
* Gets the `i`th child of this node.
*/
pub fn getChild(self: RelationalExpression, i: int) -> Node;

RelationalExpression::getRight

/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
pub fn getRight(self: RelationalExpression) -> Expression;

RelationalExpression::getRightOperand

/**
* Get the right operand of this binary expression.
*/
pub fn getRightOperand(self: RelationalExpression) -> Expression;

RelationalExpression::getDecorator

/**
* Gets the `i`th decorator.
*/
pub fn getDecorator(self: RelationalExpression, i: int) -> Decorator;

RelationalExpression::getOperator

/**
* Get the operator of this binary expression.
*/
pub fn getOperator(self: RelationalExpression) -> BinaryOperator;

RelationalExpression::getKind

/**
* Get the syntax kind of this node
*/
pub fn getKind(self: RelationalExpression) -> int;

RelationalExpression::getAModifier

/**
* Gets a modifier.
*/
pub fn getAModifier(self: RelationalExpression) -> *Modifier;

RelationalExpression::__all__

Data constraint method.

pub fn __all__(db: JavascriptDB) -> *RelationalExpression;

RelationalExpression::getLocation

/**
* Gets the location of this node.
*/
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.
*/
pub fn getADescendantByLevel(self: RelationalExpression, level: int) -> *Node;

RelationalExpression::getEndColumnNumber

pub fn getEndColumnNumber(self: RelationalExpression) -> int;

RelationalExpression::getParent

/**
* Gets the parent node of this node.
*/
pub fn getParent(self: RelationalExpression) -> Node;

RelationalExpression::getLastChild

/**
* Gets the last child of this node parent.
*/
pub fn getLastChild(self: RelationalExpression) -> Node;

RelationalExpression::getIndex

pub fn getIndex(self: RelationalExpression) -> int;

RelationalExpression::getRelativePath

/**
* Gets the relative path of this node.
*/
pub fn getRelativePath(self: RelationalExpression) -> string;

RelationalExpression::getAnAncestorEnclosingFunction

/**
* Gets an ancestor enclosing function of it
*/
pub fn getAnAncestorEnclosingFunction(self: RelationalExpression) -> *FunctionLikeDeclaration;

RelationalExpression::getSymbol

/**
* Gets the symbol associated with this node.
*/
pub fn getSymbol(self: RelationalExpression) -> Symbol;

RelationalExpression::getRoot

/**
* Gets the root top-level of this node. 
*/
pub fn getRoot(self: RelationalExpression) -> TopLevelDO;

RelationalExpression::getParentOid

/**
* Gets the parent oid of this node.
*/
pub fn getParentOid(self: RelationalExpression) -> int;

RelationalExpression::getEnclosingFunction

/**
* Gets the enclosing function of it
*/
pub fn getEnclosingFunction(self: RelationalExpression) -> FunctionLikeDeclaration;

RelationalExpression::getADescendant

/**
* Gets a descendant of this node. 
*/
pub fn getADescendant(self: RelationalExpression) -> *Node;

RelationalExpression::getADecorator

/**
* Gets a decorator.
*/
pub fn getADecorator(self: RelationalExpression) -> *Decorator;

RelationalExpression::getAComment

/**
* Gets the comments related to it
*/
pub fn getAComment(self: RelationalExpression) -> *Comment;

RelationalExpression::getText

/**
* Gets the text of this node.
*/
pub fn getText(self: RelationalExpression) -> string;

RelationalExpression::getModifier

/**
* Gets the `i`th modifier.
*/
pub fn getModifier(self: RelationalExpression, i: int) -> Modifier;

RelationalExpression::getLeftOperand

/**
* Get the left operand of this binary expression.
*/
pub fn getLeftOperand(self: RelationalExpression) -> Expression;

RelationalExpression::getLeft

/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
pub fn getLeft(self: RelationalExpression) -> Expression;

RelationalExpression::getAnAncestor

/**
* Gets an ancestor of this node. 
*/
pub fn getAnAncestor(self: RelationalExpression) -> *Node;