EqualityTestExpression
/**
* An equality test expression using `==`, `!=`, `===` or `!==`.
*/
Inherit from BinaryExpression
Primary key: id: int
schema EqualityTestExpression extends BinaryExpression {
@primary id: int
}
EqualityTestExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
File
pub fn getFile(self: EqualityTestExpression) -> File;
EqualityTestExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:EqualityTestExpression
- Return
*Comment
pub fn getALeadingComment(self: EqualityTestExpression) -> *Comment;
EqualityTestExpression::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.
*/
- Parameter
self
:EqualityTestExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: EqualityTestExpression, level: int) -> Node;
EqualityTestExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:EqualityTestExpression
- Return
*Comment
pub fn getATrailingComment(self: EqualityTestExpression) -> *Comment;
EqualityTestExpression::getEndLineNumber
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getEndLineNumber(self: EqualityTestExpression) -> int;
EqualityTestExpression::getStartLineNumber
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getStartLineNumber(self: EqualityTestExpression) -> int;
EqualityTestExpression::getStartColumnNumber
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getStartColumnNumber(self: EqualityTestExpression) -> int;
EqualityTestExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
*Node
pub fn getAChild(self: EqualityTestExpression) -> *Node;
EqualityTestExpression::getAnOperand
- Parameter
self
:EqualityTestExpression
- Return
*Expression
pub fn getAnOperand(self: EqualityTestExpression) -> *Expression;
EqualityTestExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getChildCount(self: EqualityTestExpression) -> int;
EqualityTestExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:EqualityTestExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: EqualityTestExpression, i: int) -> Node;
EqualityTestExpression::getRight
/**
* Get the right operand of this binary expression. An alias of `getRightOperand`
*/
- Parameter
self
:EqualityTestExpression
- Return
Expression
pub fn getRight(self: EqualityTestExpression) -> Expression;
EqualityTestExpression::getRightOperand
/**
* Get the right operand of this binary expression.
*/
- Parameter
self
:EqualityTestExpression
- Return
Expression
pub fn getRightOperand(self: EqualityTestExpression) -> Expression;
EqualityTestExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:EqualityTestExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: EqualityTestExpression, i: int) -> Decorator;
EqualityTestExpression::getOperator
/**
* Get the operator of this binary expression.
*/
- Parameter
self
:EqualityTestExpression
- Return
BinaryOperator
pub fn getOperator(self: EqualityTestExpression) -> BinaryOperator;
EqualityTestExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getKind(self: EqualityTestExpression) -> int;
EqualityTestExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:EqualityTestExpression
- Return
*Modifier
pub fn getAModifier(self: EqualityTestExpression) -> *Modifier;
EqualityTestExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*EqualityTestExpression
pub fn __all__(db: JavascriptDB) -> *EqualityTestExpression;
EqualityTestExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
Location
pub fn getLocation(self: EqualityTestExpression) -> Location;
EqualityTestExpression::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.
*/
- Parameter
self
:EqualityTestExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: EqualityTestExpression, level: int) -> *Node;
EqualityTestExpression::getEndColumnNumber
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getEndColumnNumber(self: EqualityTestExpression) -> int;
EqualityTestExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
Node
pub fn getParent(self: EqualityTestExpression) -> Node;
EqualityTestExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:EqualityTestExpression
- Return
Node
pub fn getLastChild(self: EqualityTestExpression) -> Node;
EqualityTestExpression::getIndex
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getIndex(self: EqualityTestExpression) -> int;
EqualityTestExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
string
pub fn getRelativePath(self: EqualityTestExpression) -> string;
EqualityTestExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:EqualityTestExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: EqualityTestExpression) -> *FunctionLikeDeclaration;
EqualityTestExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
Symbol
pub fn getSymbol(self: EqualityTestExpression) -> Symbol;
EqualityTestExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
TopLevelDO
pub fn getRoot(self: EqualityTestExpression) -> TopLevelDO;
EqualityTestExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
int
pub fn getParentOid(self: EqualityTestExpression) -> int;
EqualityTestExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:EqualityTestExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: EqualityTestExpression) -> FunctionLikeDeclaration;
EqualityTestExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
*Node
pub fn getADescendant(self: EqualityTestExpression) -> *Node;
EqualityTestExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:EqualityTestExpression
- Return
*Decorator
pub fn getADecorator(self: EqualityTestExpression) -> *Decorator;
EqualityTestExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:EqualityTestExpression
- Return
*Comment
pub fn getAComment(self: EqualityTestExpression) -> *Comment;
EqualityTestExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
string
pub fn getText(self: EqualityTestExpression) -> string;
EqualityTestExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:EqualityTestExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: EqualityTestExpression, i: int) -> Modifier;
EqualityTestExpression::getLeftOperand
/**
* Get the left operand of this binary expression.
*/
- Parameter
self
:EqualityTestExpression
- Return
Expression
pub fn getLeftOperand(self: EqualityTestExpression) -> Expression;
EqualityTestExpression::getLeft
/**
* Get the left operand of this binary expression. An alias of `getLeftOperand`.
*/
- Parameter
self
:EqualityTestExpression
- Return
Expression
pub fn getLeft(self: EqualityTestExpression) -> Expression;
EqualityTestExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:EqualityTestExpression
- Return
*Node
pub fn getAnAncestor(self: EqualityTestExpression) -> *Node;