StrictEqualityTestExpression

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

Inherit from EqualityTestExpression

Primary key: id: int

schema StrictEqualityTestExpression extends EqualityTestExpression {
  @primary id: int
}

StrictEqualityTestExpression::getAnAncestor

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

StrictEqualityTestExpression::getLeft

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

StrictEqualityTestExpression::getLeftOperand

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

StrictEqualityTestExpression::getModifier

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

StrictEqualityTestExpression::getText

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

StrictEqualityTestExpression::getAComment

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

StrictEqualityTestExpression::getADecorator

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

StrictEqualityTestExpression::getADescendant

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

StrictEqualityTestExpression::getEnclosingFunction

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

StrictEqualityTestExpression::getParentOid

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

StrictEqualityTestExpression::getRoot

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

StrictEqualityTestExpression::getSymbol

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

StrictEqualityTestExpression::getAnAncestorEnclosingFunction

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

StrictEqualityTestExpression::getRelativePath

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

StrictEqualityTestExpression::getIndex

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

StrictEqualityTestExpression::getChildCount

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

StrictEqualityTestExpression::getStartLineNumber

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

StrictEqualityTestExpression::getAnOperand

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

StrictEqualityTestExpression::getAChild

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

StrictEqualityTestExpression::getStartColumnNumber

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

StrictEqualityTestExpression::getEndLineNumber

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

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

StrictEqualityTestExpression::getATrailingComment

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

StrictEqualityTestExpression::__all__

Data constraint method.

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

StrictEqualityTestExpression::getLocation

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

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

StrictEqualityTestExpression::getALeadingComment

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

StrictEqualityTestExpression::getFile

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

StrictEqualityTestExpression::getDecorator

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

StrictEqualityTestExpression::getRightOperand

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

StrictEqualityTestExpression::getChild

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

StrictEqualityTestExpression::getRight

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

StrictEqualityTestExpression::getOperator

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

StrictEqualityTestExpression::getAModifier

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

StrictEqualityTestExpression::getKind

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

StrictEqualityTestExpression::getEndColumnNumber

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

StrictEqualityTestExpression::getParent

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

StrictEqualityTestExpression::getLastChild

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