GreaterThanEqualsExpression

/**
* A greater-than-or-equal expression using `>=`.
*/

Inherit from RelationalExpression

Primary key: id: int

schema GreaterThanEqualsExpression extends RelationalExpression {
  @primary id: int
}

GreaterThanEqualsExpression::getAnAncestor

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

GreaterThanEqualsExpression::getLeft

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

GreaterThanEqualsExpression::getLeftOperand

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

GreaterThanEqualsExpression::getModifier

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

GreaterThanEqualsExpression::getText

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

GreaterThanEqualsExpression::getAComment

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

GreaterThanEqualsExpression::getADecorator

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

GreaterThanEqualsExpression::getADescendant

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

GreaterThanEqualsExpression::getEnclosingFunction

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

GreaterThanEqualsExpression::getParentOid

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

GreaterThanEqualsExpression::getRoot

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

GreaterThanEqualsExpression::getSymbol

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

GreaterThanEqualsExpression::getAnAncestorEnclosingFunction

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

GreaterThanEqualsExpression::getRelativePath

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

GreaterThanEqualsExpression::getIndex

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

GreaterThanEqualsExpression::getChildCount

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

GreaterThanEqualsExpression::getStartLineNumber

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

GreaterThanEqualsExpression::getAnOperand

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

GreaterThanEqualsExpression::getAChild

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

GreaterThanEqualsExpression::getStartColumnNumber

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

GreaterThanEqualsExpression::getEndLineNumber

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

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

GreaterThanEqualsExpression::getATrailingComment

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

GreaterThanEqualsExpression::__all__

Data constraint method.

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

GreaterThanEqualsExpression::getLocation

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

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

GreaterThanEqualsExpression::getALeadingComment

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

GreaterThanEqualsExpression::getFile

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

GreaterThanEqualsExpression::getDecorator

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

GreaterThanEqualsExpression::getRightOperand

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

GreaterThanEqualsExpression::getChild

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

GreaterThanEqualsExpression::getRight

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

GreaterThanEqualsExpression::getOperator

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

GreaterThanEqualsExpression::getAModifier

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

GreaterThanEqualsExpression::getKind

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

GreaterThanEqualsExpression::getEndColumnNumber

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

GreaterThanEqualsExpression::getParent

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

GreaterThanEqualsExpression::getLastChild

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