ExclamationEqualsEqualsToken

/**
* A `!==` token.
*/

Inherit from Token

Primary key: id: int

schema ExclamationEqualsEqualsToken extends Token {
  @primary id: int
}

ExclamationEqualsEqualsToken::getSymbol

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

ExclamationEqualsEqualsToken::getAnAncestorEnclosingFunction

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

ExclamationEqualsEqualsToken::getIndex

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

ExclamationEqualsEqualsToken::getParentOid

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

ExclamationEqualsEqualsToken::getRelativePath

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

ExclamationEqualsEqualsToken::getLastChild

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

ExclamationEqualsEqualsToken::getEndColumnNumber

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

ExclamationEqualsEqualsToken::getParent

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

ExclamationEqualsEqualsToken::getChildCount

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

ExclamationEqualsEqualsToken::getDecorator

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

ExclamationEqualsEqualsToken::getEndLineNumber

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

ExclamationEqualsEqualsToken::getATrailingComment

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

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

ExclamationEqualsEqualsToken::getChild

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

ExclamationEqualsEqualsToken::getRoot

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

ExclamationEqualsEqualsToken::getAChild

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

ExclamationEqualsEqualsToken::getStartColumnNumber

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

ExclamationEqualsEqualsToken::getStartLineNumber

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

ExclamationEqualsEqualsToken::__all__

Data constraint method.

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

ExclamationEqualsEqualsToken::getLocation

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

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

ExclamationEqualsEqualsToken::getKind

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

ExclamationEqualsEqualsToken::getAModifier

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

ExclamationEqualsEqualsToken::getAnAncestor

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

ExclamationEqualsEqualsToken::getEnclosingFunction

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

ExclamationEqualsEqualsToken::getADescendant

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

ExclamationEqualsEqualsToken::getALeadingComment

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

ExclamationEqualsEqualsToken::getFile

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

ExclamationEqualsEqualsToken::getModifier

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

ExclamationEqualsEqualsToken::getText

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

ExclamationEqualsEqualsToken::getAComment

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

ExclamationEqualsEqualsToken::getADecorator

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