RelationalOperator

/**
* A relational operator `<`, `<=`, `>`, `>=`, `instanceof` or `in`.
*/

Inherit from Token

Primary key: id: int

schema RelationalOperator extends Token {
  @primary id: int
}

RelationalOperator::getSymbol

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

RelationalOperator::getAnAncestorEnclosingFunction

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

RelationalOperator::getIndex

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

RelationalOperator::getParentOid

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

RelationalOperator::getRelativePath

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

RelationalOperator::getLastChild

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

RelationalOperator::getEndColumnNumber

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

RelationalOperator::getParent

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

RelationalOperator::getChildCount

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

RelationalOperator::getDecorator

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

RelationalOperator::getEndLineNumber

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

RelationalOperator::getATrailingComment

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

RelationalOperator::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: RelationalOperator, level: int) -> Node;

RelationalOperator::getChild

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

RelationalOperator::getRoot

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

RelationalOperator::getAChild

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

RelationalOperator::getStartColumnNumber

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

RelationalOperator::getStartLineNumber

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

RelationalOperator::__all__

Data constraint method.

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

RelationalOperator::getLocation

/**
* Gets the location of this node.
*/
pub fn getLocation(self: RelationalOperator) -> Location;

RelationalOperator::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: RelationalOperator, level: int) -> *Node;

RelationalOperator::getKind

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

RelationalOperator::getAModifier

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

RelationalOperator::getAnAncestor

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

RelationalOperator::getEnclosingFunction

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

RelationalOperator::getADescendant

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

RelationalOperator::getALeadingComment

/**
* Gets the leading comments of it
*/
pub fn getALeadingComment(self: RelationalOperator) -> *Comment;

RelationalOperator::getFile

/**
* Gets the file of this node.
*/
pub fn getFile(self: RelationalOperator) -> File;

RelationalOperator::getModifier

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

RelationalOperator::getText

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

RelationalOperator::getAComment

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

RelationalOperator::getADecorator

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