DecrementExpression

/**
* A decrement expression using `--`.
*/

Inherit from UpdateExpression

Primary key: id: int

schema DecrementExpression extends UpdateExpression {
  @primary id: int
}

DecrementExpression::getStartLineNumber

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

DecrementExpression::getStartColumnNumber

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

DecrementExpression::getAChild

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

DecrementExpression::getAnAncestor

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

DecrementExpression::getChild

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

DecrementExpression::getADescendant

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

DecrementExpression::getEnclosingFunction

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

DecrementExpression::getParentOid

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

DecrementExpression::getRoot

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

DecrementExpression::getEndLineNumber

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

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

DecrementExpression::getATrailingComment

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

DecrementExpression::getALeadingComment

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

DecrementExpression::getFile

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

DecrementExpression::getADecorator

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

DecrementExpression::getAComment

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

DecrementExpression::__all__

Data constraint method.

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

DecrementExpression::getKind

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

DecrementExpression::getAModifier

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

DecrementExpression::getLocation

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

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

DecrementExpression::getText

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

DecrementExpression::getModifier

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

DecrementExpression::getEndColumnNumber

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

DecrementExpression::getLastChild

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

DecrementExpression::getParent

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

DecrementExpression::getExpression

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

DecrementExpression::getChildCount

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

DecrementExpression::getDecorator

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

DecrementExpression::getIndex

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

DecrementExpression::getSymbol

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

DecrementExpression::getAnAncestorEnclosingFunction

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

DecrementExpression::getRelativePath

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