EqualityExpression

/** * An equality expression using `==`. */ 

Inherit from EqualityTestExpression

Primary key: id: int

schema EqualityExpression extends EqualityTestExpression { @primary id: int } 

EqualityExpression::getAnAncestor

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

EqualityExpression::getLeft

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

EqualityExpression::getLeftOperand

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

EqualityExpression::getModifier

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

EqualityExpression::getText

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

EqualityExpression::getAComment

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

EqualityExpression::getADecorator

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

EqualityExpression::getADescendant

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

EqualityExpression::getEnclosingFunction

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

EqualityExpression::getParentOid

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

EqualityExpression::getRoot

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

EqualityExpression::getSymbol

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

EqualityExpression::getAnAncestorEnclosingFunction

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

EqualityExpression::getRelativePath

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

EqualityExpression::getIndex

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

EqualityExpression::getChildCount

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

EqualityExpression::getStartLineNumber

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

EqualityExpression::getAnOperand

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

EqualityExpression::getAChild

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

EqualityExpression::getStartColumnNumber

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

EqualityExpression::getEndLineNumber

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

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

EqualityExpression::getATrailingComment

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

EqualityExpression::__all__

Data constraint method.

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

EqualityExpression::getLocation

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

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

EqualityExpression::getALeadingComment

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

EqualityExpression::getFile

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

EqualityExpression::getDecorator

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

EqualityExpression::getRightOperand

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

EqualityExpression::getChild

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

EqualityExpression::getRight

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

EqualityExpression::getOperator

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

EqualityExpression::getAModifier

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

EqualityExpression::getKind

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

EqualityExpression::getEndColumnNumber

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

EqualityExpression::getParent

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

EqualityExpression::getLastChild

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