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