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