UpdateOperator

/**
* An update operator.
*/

Inherit from Token

Primary key: id: int

schema UpdateOperator extends Token {
  @primary id: int
}

UpdateOperator::getSymbol

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

UpdateOperator::getAnAncestorEnclosingFunction

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

UpdateOperator::getIndex

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

UpdateOperator::getParentOid

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

UpdateOperator::getRelativePath

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

UpdateOperator::getLastChild

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

UpdateOperator::getEndColumnNumber

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

UpdateOperator::getParent

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

UpdateOperator::getChildCount

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

UpdateOperator::getDecorator

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

UpdateOperator::getEndLineNumber

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

UpdateOperator::getATrailingComment

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

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

UpdateOperator::getChild

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

UpdateOperator::getRoot

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

UpdateOperator::getAChild

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

UpdateOperator::getStartColumnNumber

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

UpdateOperator::getStartLineNumber

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

UpdateOperator::__all__

Data constraint method.

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

UpdateOperator::getLocation

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

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

UpdateOperator::getKind

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

UpdateOperator::getAModifier

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

UpdateOperator::getAnAncestor

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

UpdateOperator::getEnclosingFunction

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

UpdateOperator::getADescendant

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

UpdateOperator::getALeadingComment

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

UpdateOperator::getFile

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

UpdateOperator::getModifier

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

UpdateOperator::getText

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

UpdateOperator::getAComment

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

UpdateOperator::getADecorator

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