InequalityExpression

/** * An inequality expression using `!=`. */ 

Inherit from EqualityTestExpression

Primary key: id: int

schema InequalityExpression extends EqualityTestExpression { @primary id: int } 

InequalityExpression::getAnAncestor

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

InequalityExpression::getLeft

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

InequalityExpression::getLeftOperand

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

InequalityExpression::getModifier

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

InequalityExpression::getText

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

InequalityExpression::getAComment

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

InequalityExpression::getADecorator

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

InequalityExpression::getADescendant

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

InequalityExpression::getEnclosingFunction

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

InequalityExpression::getParentOid

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

InequalityExpression::getRoot

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

InequalityExpression::getSymbol

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

InequalityExpression::getAnAncestorEnclosingFunction

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

InequalityExpression::getRelativePath

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

InequalityExpression::getIndex

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

InequalityExpression::getChildCount

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

InequalityExpression::getStartLineNumber

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

InequalityExpression::getAnOperand

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

InequalityExpression::getAChild

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

InequalityExpression::getStartColumnNumber

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

InequalityExpression::getEndLineNumber

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

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

InequalityExpression::getATrailingComment

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

InequalityExpression::__all__

Data constraint method.

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

InequalityExpression::getLocation

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

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

InequalityExpression::getALeadingComment

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

InequalityExpression::getFile

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

InequalityExpression::getDecorator

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

InequalityExpression::getRightOperand

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

InequalityExpression::getChild

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

InequalityExpression::getRight

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

InequalityExpression::getOperator

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

InequalityExpression::getAModifier

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

InequalityExpression::getKind

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

InequalityExpression::getEndColumnNumber

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

InequalityExpression::getParent

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

InequalityExpression::getLastChild

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