StrictEqualityExpression

/** * A strict equality expression using `===`. */ 

Inherit from EqualityTestExpression

Primary key: id: int

schema StrictEqualityExpression extends EqualityTestExpression { @primary id: int } 

StrictEqualityExpression::getAnAncestor

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

StrictEqualityExpression::getLeft

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

StrictEqualityExpression::getLeftOperand

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

StrictEqualityExpression::getModifier

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

StrictEqualityExpression::getText

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

StrictEqualityExpression::getAComment

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

StrictEqualityExpression::getADecorator

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

StrictEqualityExpression::getADescendant

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

StrictEqualityExpression::getEnclosingFunction

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

StrictEqualityExpression::getParentOid

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

StrictEqualityExpression::getRoot

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

StrictEqualityExpression::getSymbol

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

StrictEqualityExpression::getAnAncestorEnclosingFunction

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

StrictEqualityExpression::getRelativePath

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

StrictEqualityExpression::getIndex

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

StrictEqualityExpression::getChildCount

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

StrictEqualityExpression::getStartLineNumber

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

StrictEqualityExpression::getAnOperand

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

StrictEqualityExpression::getAChild

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

StrictEqualityExpression::getStartColumnNumber

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

StrictEqualityExpression::getEndLineNumber

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

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

StrictEqualityExpression::getATrailingComment

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

StrictEqualityExpression::__all__

Data constraint method.

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

StrictEqualityExpression::getLocation

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

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

StrictEqualityExpression::getALeadingComment

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

StrictEqualityExpression::getFile

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

StrictEqualityExpression::getDecorator

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

StrictEqualityExpression::getRightOperand

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

StrictEqualityExpression::getChild

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

StrictEqualityExpression::getRight

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

StrictEqualityExpression::getOperator

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

StrictEqualityExpression::getAModifier

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

StrictEqualityExpression::getKind

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

StrictEqualityExpression::getEndColumnNumber

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

StrictEqualityExpression::getParent

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

StrictEqualityExpression::getLastChild

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