LogicalNotExpression

/**
* A logical NOT expression using `!`.
*/

Inherit from PrefixUnaryExpression

Primary key: id: int

schema LogicalNotExpression extends PrefixUnaryExpression {
  @primary id: int
}

LogicalNotExpression::getIndex

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

LogicalNotExpression::getDecorator

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

LogicalNotExpression::getChildCount

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

LogicalNotExpression::getExpression

pub fn getExpression(self: LogicalNotExpression) -> Expression;

LogicalNotExpression::getParent

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

LogicalNotExpression::getLastChild

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

LogicalNotExpression::getOperand

pub fn getOperand(self: LogicalNotExpression) -> UnaryExpression;

LogicalNotExpression::getEndColumnNumber

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

LogicalNotExpression::getKind

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

LogicalNotExpression::getAModifier

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

LogicalNotExpression::getADecorator

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

LogicalNotExpression::getAComment

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

LogicalNotExpression::getRoot

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

LogicalNotExpression::getParentOid

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

LogicalNotExpression::getEnclosingFunction

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

LogicalNotExpression::getADescendant

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

LogicalNotExpression::getChild

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

LogicalNotExpression::getStartLineNumber

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

LogicalNotExpression::getAnAncestor

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

LogicalNotExpression::__all__

Data constraint method.

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

LogicalNotExpression::getLocation

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

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

LogicalNotExpression::getStartColumnNumber

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

LogicalNotExpression::getAChild

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

LogicalNotExpression::getSymbol

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

LogicalNotExpression::getAnAncestorEnclosingFunction

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

LogicalNotExpression::getRelativePath

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

LogicalNotExpression::getModifier

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

LogicalNotExpression::getText

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

LogicalNotExpression::getOperator

pub fn getOperator(self: LogicalNotExpression) -> PrefixUnaryOperator;

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

LogicalNotExpression::getATrailingComment

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

LogicalNotExpression::getEndLineNumber

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

LogicalNotExpression::getALeadingComment

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

LogicalNotExpression::getFile

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