GreaterThanExpression

/**
* A greater-than expression using `>`.
*/

Inherit from RelationalExpression

Primary key: id: int

schema GreaterThanExpression extends RelationalExpression {
  @primary id: int
}

GreaterThanExpression::getAnAncestor

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

GreaterThanExpression::getLeft

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

GreaterThanExpression::getLeftOperand

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

GreaterThanExpression::getModifier

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

GreaterThanExpression::getText

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

GreaterThanExpression::getAComment

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

GreaterThanExpression::getADecorator

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

GreaterThanExpression::getADescendant

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

GreaterThanExpression::getEnclosingFunction

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

GreaterThanExpression::getParentOid

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

GreaterThanExpression::getRoot

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

GreaterThanExpression::getSymbol

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

GreaterThanExpression::getAnAncestorEnclosingFunction

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

GreaterThanExpression::getRelativePath

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

GreaterThanExpression::getIndex

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

GreaterThanExpression::getChildCount

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

GreaterThanExpression::getStartLineNumber

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

GreaterThanExpression::getAnOperand

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

GreaterThanExpression::getAChild

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

GreaterThanExpression::getStartColumnNumber

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

GreaterThanExpression::getEndLineNumber

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

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

GreaterThanExpression::getATrailingComment

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

GreaterThanExpression::__all__

Data constraint method.

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

GreaterThanExpression::getLocation

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

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

GreaterThanExpression::getALeadingComment

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

GreaterThanExpression::getFile

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

GreaterThanExpression::getDecorator

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

GreaterThanExpression::getRightOperand

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

GreaterThanExpression::getChild

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

GreaterThanExpression::getRight

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

GreaterThanExpression::getOperator

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

GreaterThanExpression::getAModifier

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

GreaterThanExpression::getKind

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

GreaterThanExpression::getEndColumnNumber

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

GreaterThanExpression::getParent

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

GreaterThanExpression::getLastChild

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