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