PrefixUnaryOperator

/** * A prefix unary operator. */ 

Inherit from Token

Primary key: id: int

schema PrefixUnaryOperator extends Token { @primary id: int } 

PrefixUnaryOperator::getSymbol

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

PrefixUnaryOperator::getAnAncestorEnclosingFunction

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

PrefixUnaryOperator::getIndex

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

PrefixUnaryOperator::getParentOid

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

PrefixUnaryOperator::getRelativePath

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

PrefixUnaryOperator::getLastChild

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

PrefixUnaryOperator::getEndColumnNumber

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

PrefixUnaryOperator::getParent

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

PrefixUnaryOperator::getChildCount

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

PrefixUnaryOperator::getDecorator

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

PrefixUnaryOperator::getEndLineNumber

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

PrefixUnaryOperator::getATrailingComment

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

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

PrefixUnaryOperator::getChild

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

PrefixUnaryOperator::getRoot

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

PrefixUnaryOperator::getAChild

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

PrefixUnaryOperator::getStartColumnNumber

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

PrefixUnaryOperator::getStartLineNumber

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

PrefixUnaryOperator::__all__

Data constraint method.

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

PrefixUnaryOperator::getLocation

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

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

PrefixUnaryOperator::getKind

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

PrefixUnaryOperator::getAModifier

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

PrefixUnaryOperator::getAnAncestor

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

PrefixUnaryOperator::getEnclosingFunction

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

PrefixUnaryOperator::getADescendant

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

PrefixUnaryOperator::getALeadingComment

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

PrefixUnaryOperator::getFile

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

PrefixUnaryOperator::getModifier

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

PrefixUnaryOperator::getText

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

PrefixUnaryOperator::getAComment

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

PrefixUnaryOperator::getADecorator

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