EqualsEqualsToken

/**
* An `==` token.
*/

Inherit from Token

Primary key: id: int

schema EqualsEqualsToken extends Token {
  @primary id: int
}

EqualsEqualsToken::getSymbol

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

EqualsEqualsToken::getAnAncestorEnclosingFunction

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

EqualsEqualsToken::getIndex

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

EqualsEqualsToken::getParentOid

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

EqualsEqualsToken::getRelativePath

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

EqualsEqualsToken::getLastChild

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

EqualsEqualsToken::getEndColumnNumber

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

EqualsEqualsToken::getParent

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

EqualsEqualsToken::getChildCount

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

EqualsEqualsToken::getDecorator

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

EqualsEqualsToken::getEndLineNumber

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

EqualsEqualsToken::getATrailingComment

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

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

EqualsEqualsToken::getChild

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

EqualsEqualsToken::getRoot

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

EqualsEqualsToken::getAChild

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

EqualsEqualsToken::getStartColumnNumber

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

EqualsEqualsToken::getStartLineNumber

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

EqualsEqualsToken::__all__

Data constraint method.

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

EqualsEqualsToken::getLocation

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

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

EqualsEqualsToken::getKind

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

EqualsEqualsToken::getAModifier

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

EqualsEqualsToken::getAnAncestor

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

EqualsEqualsToken::getEnclosingFunction

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

EqualsEqualsToken::getADescendant

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

EqualsEqualsToken::getALeadingComment

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

EqualsEqualsToken::getFile

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

EqualsEqualsToken::getModifier

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

EqualsEqualsToken::getText

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

EqualsEqualsToken::getAComment

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

EqualsEqualsToken::getADecorator

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