LessThanEqualsExpression

/** * A less-than-or-equal expression using `<=`. */ 

Inherit from RelationalExpression

Primary key: id: int

schema LessThanEqualsExpression extends RelationalExpression { @primary id: int } 

LessThanEqualsExpression::getAnAncestor

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

LessThanEqualsExpression::getLeft

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

LessThanEqualsExpression::getLeftOperand

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

LessThanEqualsExpression::getModifier

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

LessThanEqualsExpression::getText

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

LessThanEqualsExpression::getAComment

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

LessThanEqualsExpression::getADecorator

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

LessThanEqualsExpression::getADescendant

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

LessThanEqualsExpression::getEnclosingFunction

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

LessThanEqualsExpression::getParentOid

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

LessThanEqualsExpression::getRoot

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

LessThanEqualsExpression::getSymbol

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

LessThanEqualsExpression::getAnAncestorEnclosingFunction

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

LessThanEqualsExpression::getRelativePath

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

LessThanEqualsExpression::getIndex

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

LessThanEqualsExpression::getChildCount

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

LessThanEqualsExpression::getStartLineNumber

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

LessThanEqualsExpression::getAnOperand

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

LessThanEqualsExpression::getAChild

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

LessThanEqualsExpression::getStartColumnNumber

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

LessThanEqualsExpression::getEndLineNumber

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

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

LessThanEqualsExpression::getATrailingComment

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

LessThanEqualsExpression::__all__

Data constraint method.

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

LessThanEqualsExpression::getLocation

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

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

LessThanEqualsExpression::getALeadingComment

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

LessThanEqualsExpression::getFile

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

LessThanEqualsExpression::getDecorator

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

LessThanEqualsExpression::getRightOperand

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

LessThanEqualsExpression::getChild

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

LessThanEqualsExpression::getRight

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

LessThanEqualsExpression::getOperator

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

LessThanEqualsExpression::getAModifier

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

LessThanEqualsExpression::getKind

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

LessThanEqualsExpression::getEndColumnNumber

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

LessThanEqualsExpression::getParent

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

LessThanEqualsExpression::getLastChild

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