LessThanEqualsToken

/**
* A `<=` token.
*/

Inherit from Token

Primary key: id: int

schema LessThanEqualsToken extends Token {
  @primary id: int
}

LessThanEqualsToken::getSymbol

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

LessThanEqualsToken::getAnAncestorEnclosingFunction

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

LessThanEqualsToken::getIndex

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

LessThanEqualsToken::getParentOid

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

LessThanEqualsToken::getRelativePath

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

LessThanEqualsToken::getLastChild

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

LessThanEqualsToken::getEndColumnNumber

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

LessThanEqualsToken::getParent

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

LessThanEqualsToken::getChildCount

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

LessThanEqualsToken::getDecorator

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

LessThanEqualsToken::getEndLineNumber

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

LessThanEqualsToken::getATrailingComment

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

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

LessThanEqualsToken::getChild

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

LessThanEqualsToken::getRoot

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

LessThanEqualsToken::getAChild

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

LessThanEqualsToken::getStartColumnNumber

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

LessThanEqualsToken::getStartLineNumber

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

LessThanEqualsToken::__all__

Data constraint method.

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

LessThanEqualsToken::getLocation

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

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

LessThanEqualsToken::getKind

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

LessThanEqualsToken::getAModifier

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

LessThanEqualsToken::getAnAncestor

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

LessThanEqualsToken::getEnclosingFunction

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

LessThanEqualsToken::getADescendant

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

LessThanEqualsToken::getALeadingComment

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

LessThanEqualsToken::getFile

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

LessThanEqualsToken::getModifier

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

LessThanEqualsToken::getText

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

LessThanEqualsToken::getAComment

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

LessThanEqualsToken::getADecorator

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