PostfixUnaryOperator

/**
* A postfix unary operator.
*/

Inherit from Token

Primary key: id: int

schema PostfixUnaryOperator extends Token {
  @primary id: int
}

PostfixUnaryOperator::getSymbol

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

PostfixUnaryOperator::getAnAncestorEnclosingFunction

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

PostfixUnaryOperator::getIndex

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

PostfixUnaryOperator::getParentOid

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

PostfixUnaryOperator::getRelativePath

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

PostfixUnaryOperator::getLastChild

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

PostfixUnaryOperator::getEndColumnNumber

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

PostfixUnaryOperator::getParent

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

PostfixUnaryOperator::getChildCount

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

PostfixUnaryOperator::getDecorator

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

PostfixUnaryOperator::getEndLineNumber

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

PostfixUnaryOperator::getATrailingComment

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

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

PostfixUnaryOperator::getChild

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

PostfixUnaryOperator::getRoot

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

PostfixUnaryOperator::getAChild

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

PostfixUnaryOperator::getStartColumnNumber

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

PostfixUnaryOperator::getStartLineNumber

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

PostfixUnaryOperator::__all__

Data constraint method.

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

PostfixUnaryOperator::getLocation

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

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

PostfixUnaryOperator::getKind

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

PostfixUnaryOperator::getAModifier

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

PostfixUnaryOperator::getAnAncestor

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

PostfixUnaryOperator::getEnclosingFunction

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

PostfixUnaryOperator::getADescendant

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

PostfixUnaryOperator::getALeadingComment

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

PostfixUnaryOperator::getFile

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

PostfixUnaryOperator::getModifier

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

PostfixUnaryOperator::getText

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

PostfixUnaryOperator::getAComment

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

PostfixUnaryOperator::getADecorator

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