BitwiseNotExpression

/**
* A bitwise NOT expression using `~`.
*/

Inherit from PrefixUnaryExpression

Primary key: id: int

schema BitwiseNotExpression extends PrefixUnaryExpression {
  @primary id: int
}

BitwiseNotExpression::getIndex

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

BitwiseNotExpression::getDecorator

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

BitwiseNotExpression::getChildCount

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

BitwiseNotExpression::getExpression

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

BitwiseNotExpression::getParent

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

BitwiseNotExpression::getLastChild

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

BitwiseNotExpression::getOperand

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

BitwiseNotExpression::getEndColumnNumber

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

BitwiseNotExpression::getKind

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

BitwiseNotExpression::getAModifier

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

BitwiseNotExpression::getADecorator

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

BitwiseNotExpression::getAComment

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

BitwiseNotExpression::getRoot

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

BitwiseNotExpression::getParentOid

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

BitwiseNotExpression::getEnclosingFunction

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

BitwiseNotExpression::getADescendant

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

BitwiseNotExpression::getChild

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

BitwiseNotExpression::getStartLineNumber

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

BitwiseNotExpression::getAnAncestor

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

BitwiseNotExpression::__all__

Data constraint method.

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

BitwiseNotExpression::getLocation

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

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

BitwiseNotExpression::getStartColumnNumber

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

BitwiseNotExpression::getAChild

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

BitwiseNotExpression::getSymbol

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

BitwiseNotExpression::getAnAncestorEnclosingFunction

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

BitwiseNotExpression::getRelativePath

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

BitwiseNotExpression::getModifier

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

BitwiseNotExpression::getText

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

BitwiseNotExpression::getOperator

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

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

BitwiseNotExpression::getATrailingComment

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

BitwiseNotExpression::getEndLineNumber

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

BitwiseNotExpression::getALeadingComment

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

BitwiseNotExpression::getFile

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