IncrementExpression

/**
* An increment expression using `++`.
*/

Inherit from UpdateExpression

Primary key: id: int

schema IncrementExpression extends UpdateExpression {
  @primary id: int
}

IncrementExpression::getStartLineNumber

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

IncrementExpression::getStartColumnNumber

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

IncrementExpression::getAChild

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

IncrementExpression::getAnAncestor

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

IncrementExpression::getChild

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

IncrementExpression::getADescendant

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

IncrementExpression::getEnclosingFunction

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

IncrementExpression::getParentOid

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

IncrementExpression::getRoot

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

IncrementExpression::getEndLineNumber

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

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

IncrementExpression::getATrailingComment

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

IncrementExpression::getALeadingComment

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

IncrementExpression::getFile

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

IncrementExpression::getADecorator

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

IncrementExpression::getAComment

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

IncrementExpression::__all__

Data constraint method.

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

IncrementExpression::getKind

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

IncrementExpression::getAModifier

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

IncrementExpression::getLocation

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

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

IncrementExpression::getText

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

IncrementExpression::getModifier

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

IncrementExpression::getEndColumnNumber

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

IncrementExpression::getLastChild

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

IncrementExpression::getParent

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

IncrementExpression::getExpression

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

IncrementExpression::getChildCount

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

IncrementExpression::getDecorator

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

IncrementExpression::getIndex

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

IncrementExpression::getSymbol

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

IncrementExpression::getAnAncestorEnclosingFunction

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

IncrementExpression::getRelativePath

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