DeleteExpression

/**
* A `delete` expression.
*/

Inherit from UnaryExpression

Primary key: id: int

schema DeleteExpression extends UnaryExpression {
  @primary id: int
}

DeleteExpression::getADecorator

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

DeleteExpression::getAComment

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

DeleteExpression::getText

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

DeleteExpression::getModifier

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

DeleteExpression::getFile

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

DeleteExpression::getALeadingComment

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

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

DeleteExpression::getATrailingComment

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

DeleteExpression::getEndLineNumber

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

DeleteExpression::getKind

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

DeleteExpression::getAModifier

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

DeleteExpression::__all__

Data constraint method.

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

DeleteExpression::getLocation

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

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

DeleteExpression::getEndColumnNumber

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

DeleteExpression::getLastChild

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

DeleteExpression::getParent

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

DeleteExpression::getExpression

pub fn getExpression(self: DeleteExpression) -> UnaryExpression;

DeleteExpression::getIndex

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

DeleteExpression::getRelativePath

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

DeleteExpression::getParentOid

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

DeleteExpression::getAnAncestorEnclosingFunction

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

DeleteExpression::getSymbol

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

DeleteExpression::getADescendant

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

DeleteExpression::getEnclosingFunction

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

DeleteExpression::getRoot

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

DeleteExpression::getChildCount

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

DeleteExpression::getDecorator

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

DeleteExpression::getChild

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

DeleteExpression::getAnAncestor

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

DeleteExpression::getAChild

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

DeleteExpression::getStartColumnNumber

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

DeleteExpression::getStartLineNumber

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