NonStrictEqualityTestExpression

/**
* A non-strict equality test expression using `==` or `!=`.
*/

Inherit from EqualityTestExpression

Primary key: id: int

schema NonStrictEqualityTestExpression extends EqualityTestExpression {
  @primary id: int
}

NonStrictEqualityTestExpression::getAnAncestor

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

NonStrictEqualityTestExpression::getLeft

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

NonStrictEqualityTestExpression::getLeftOperand

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

NonStrictEqualityTestExpression::getModifier

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

NonStrictEqualityTestExpression::getText

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

NonStrictEqualityTestExpression::getAComment

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

NonStrictEqualityTestExpression::getADecorator

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

NonStrictEqualityTestExpression::getADescendant

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

NonStrictEqualityTestExpression::getEnclosingFunction

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

NonStrictEqualityTestExpression::getParentOid

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

NonStrictEqualityTestExpression::getRoot

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

NonStrictEqualityTestExpression::getSymbol

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

NonStrictEqualityTestExpression::getAnAncestorEnclosingFunction

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

NonStrictEqualityTestExpression::getRelativePath

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

NonStrictEqualityTestExpression::getIndex

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

NonStrictEqualityTestExpression::getChildCount

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

NonStrictEqualityTestExpression::getStartLineNumber

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

NonStrictEqualityTestExpression::getAnOperand

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

NonStrictEqualityTestExpression::getAChild

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

NonStrictEqualityTestExpression::getStartColumnNumber

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

NonStrictEqualityTestExpression::getEndLineNumber

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

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

NonStrictEqualityTestExpression::getATrailingComment

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

NonStrictEqualityTestExpression::__all__

Data constraint method.

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

NonStrictEqualityTestExpression::getLocation

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

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

NonStrictEqualityTestExpression::getALeadingComment

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

NonStrictEqualityTestExpression::getFile

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

NonStrictEqualityTestExpression::getDecorator

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

NonStrictEqualityTestExpression::getRightOperand

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

NonStrictEqualityTestExpression::getChild

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

NonStrictEqualityTestExpression::getRight

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

NonStrictEqualityTestExpression::getOperator

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

NonStrictEqualityTestExpression::getAModifier

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

NonStrictEqualityTestExpression::getKind

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

NonStrictEqualityTestExpression::getEndColumnNumber

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

NonStrictEqualityTestExpression::getParent

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

NonStrictEqualityTestExpression::getLastChild

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