UnaryExpression

/** * An unary expression. */ 

Inherit from Expression

Primary key: id: int

schema UnaryExpression extends Expression { @primary id: int } 

UnaryExpression::getSymbol

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

UnaryExpression::getAnAncestorEnclosingFunction

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

UnaryExpression::getIndex

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

UnaryExpression::getParentOid

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

UnaryExpression::getRelativePath

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

UnaryExpression::getLastChild

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

UnaryExpression::getEndColumnNumber

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

UnaryExpression::getKind

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

UnaryExpression::getAModifier

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

UnaryExpression::getChildCount

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

UnaryExpression::getDecorator

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

UnaryExpression::getChild

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

UnaryExpression::getAnAncestor

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

UnaryExpression::getAChild

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

UnaryExpression::getStartColumnNumber

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

UnaryExpression::getStartLineNumber

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

UnaryExpression::__all__

Data constraint method.

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

UnaryExpression::getLocation

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

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

UnaryExpression::getADescendant

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

UnaryExpression::getEnclosingFunction

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

UnaryExpression::getRoot

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

UnaryExpression::getParent

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

UnaryExpression::getExpression

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

UnaryExpression::getEndLineNumber

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

UnaryExpression::getATrailingComment

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

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

UnaryExpression::getALeadingComment

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

UnaryExpression::getFile

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

UnaryExpression::getModifier

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

UnaryExpression::getText

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

UnaryExpression::getAComment

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

UnaryExpression::getADecorator

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