PostfixUnaryExpression

/**
* A postfix unary expression.
*/

Inherit from UpdateExpression

Primary key: id: int

schema PostfixUnaryExpression extends UpdateExpression {
  @primary id: int
}

PostfixUnaryExpression::getStartLineNumber

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

PostfixUnaryExpression::getStartColumnNumber

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

PostfixUnaryExpression::getAChild

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

PostfixUnaryExpression::getAnAncestor

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

PostfixUnaryExpression::getChild

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

PostfixUnaryExpression::getADescendant

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

PostfixUnaryExpression::getEnclosingFunction

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

PostfixUnaryExpression::getParentOid

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

PostfixUnaryExpression::getRoot

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

PostfixUnaryExpression::getSymbol

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

PostfixUnaryExpression::getAnAncestorEnclosingFunction

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

PostfixUnaryExpression::getRelativePath

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

PostfixUnaryExpression::getModifier

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

PostfixUnaryExpression::getText

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

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

PostfixUnaryExpression::getATrailingComment

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

PostfixUnaryExpression::getEndLineNumber

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

PostfixUnaryExpression::getALeadingComment

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

PostfixUnaryExpression::getFile

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

PostfixUnaryExpression::__all__

Data constraint method.

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

PostfixUnaryExpression::getLocation

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

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

PostfixUnaryExpression::getOperator

pub fn getOperator(self: PostfixUnaryExpression) -> PostfixUnaryOperator;

PostfixUnaryExpression::getAComment

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

PostfixUnaryExpression::getADecorator

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

PostfixUnaryExpression::getAModifier

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

PostfixUnaryExpression::getKind

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

PostfixUnaryExpression::getEndColumnNumber

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

PostfixUnaryExpression::getOperand

pub fn getOperand(self: PostfixUnaryExpression) -> LeftHandSideExpression;

PostfixUnaryExpression::getLastChild

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

PostfixUnaryExpression::getParent

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

PostfixUnaryExpression::getExpression

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

PostfixUnaryExpression::getChildCount

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

PostfixUnaryExpression::getDecorator

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

PostfixUnaryExpression::getIndex

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