UpdateExpression

/** * An update expression. */ 

Inherit from UnaryExpression

Primary key: id: int

schema UpdateExpression extends UnaryExpression { @primary id: int } 

UpdateExpression::getADecorator

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

UpdateExpression::getAComment

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

UpdateExpression::getText

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

UpdateExpression::getModifier

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

UpdateExpression::getFile

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

UpdateExpression::getALeadingComment

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

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

UpdateExpression::getATrailingComment

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

UpdateExpression::getEndLineNumber

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

UpdateExpression::getKind

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

UpdateExpression::getAModifier

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

UpdateExpression::__all__

Data constraint method.

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

UpdateExpression::getLocation

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

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

UpdateExpression::getEndColumnNumber

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

UpdateExpression::getLastChild

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

UpdateExpression::getExpression

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

UpdateExpression::getParent

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

UpdateExpression::getChildCount

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

UpdateExpression::getDecorator

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

UpdateExpression::getIndex

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

UpdateExpression::getRelativePath

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

UpdateExpression::getAnAncestorEnclosingFunction

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

UpdateExpression::getSymbol

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

UpdateExpression::getRoot

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

UpdateExpression::getParentOid

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

UpdateExpression::getEnclosingFunction

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

UpdateExpression::getADescendant

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

UpdateExpression::getChild

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

UpdateExpression::getAnAncestor

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

UpdateExpression::getAChild

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

UpdateExpression::getStartColumnNumber

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

UpdateExpression::getStartLineNumber

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