ExclamationEqualsToken

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

Inherit from Token

Primary key: id: int

schema ExclamationEqualsToken extends Token {
  @primary id: int
}

ExclamationEqualsToken::getSymbol

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

ExclamationEqualsToken::getAnAncestorEnclosingFunction

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

ExclamationEqualsToken::getIndex

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

ExclamationEqualsToken::getParentOid

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

ExclamationEqualsToken::getRelativePath

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

ExclamationEqualsToken::getLastChild

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

ExclamationEqualsToken::getEndColumnNumber

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

ExclamationEqualsToken::getParent

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

ExclamationEqualsToken::getChildCount

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

ExclamationEqualsToken::getDecorator

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

ExclamationEqualsToken::getEndLineNumber

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

ExclamationEqualsToken::getATrailingComment

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

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

ExclamationEqualsToken::getChild

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

ExclamationEqualsToken::getRoot

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

ExclamationEqualsToken::getAChild

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

ExclamationEqualsToken::getStartColumnNumber

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

ExclamationEqualsToken::getStartLineNumber

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

ExclamationEqualsToken::__all__

Data constraint method.

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

ExclamationEqualsToken::getLocation

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

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

ExclamationEqualsToken::getKind

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

ExclamationEqualsToken::getAModifier

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

ExclamationEqualsToken::getAnAncestor

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

ExclamationEqualsToken::getEnclosingFunction

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

ExclamationEqualsToken::getADescendant

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

ExclamationEqualsToken::getALeadingComment

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

ExclamationEqualsToken::getFile

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

ExclamationEqualsToken::getModifier

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

ExclamationEqualsToken::getText

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

ExclamationEqualsToken::getAComment

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

ExclamationEqualsToken::getADecorator

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