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