UpdateExpression
/**
* An update expression.
*/
Inherit from UnaryExpression
Primary key: id: int
schema UpdateExpression extends UnaryExpression {
@primary id: int
}
UpdateExpression::getADecorator
/**
* Gets a decorator.
*/
- Parameter
self
:UpdateExpression
- Return
*Decorator
pub fn getADecorator(self: UpdateExpression) -> *Decorator;
UpdateExpression::getAComment
/**
* Gets the comments related to it
*/
- Parameter
self
:UpdateExpression
- Return
*Comment
pub fn getAComment(self: UpdateExpression) -> *Comment;
UpdateExpression::getText
/**
* Gets the text of this node.
*/
- Parameter
self
:UpdateExpression
- Return
string
pub fn getText(self: UpdateExpression) -> string;
UpdateExpression::getModifier
/**
* Gets the `i`th modifier.
*/
- Parameter
self
:UpdateExpression
- Parameter
i
:int
- Return
Modifier
pub fn getModifier(self: UpdateExpression, i: int) -> Modifier;
UpdateExpression::getFile
/**
* Gets the file of this node.
*/
- Parameter
self
:UpdateExpression
- Return
File
pub fn getFile(self: UpdateExpression) -> File;
UpdateExpression::getALeadingComment
/**
* Gets the leading comments of it
*/
- Parameter
self
:UpdateExpression
- Return
*Comment
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.
*/
- Parameter
self
:UpdateExpression
- Parameter
level
:int
- Return
Node
pub fn getAnAncestorByLevel(self: UpdateExpression, level: int) -> Node;
UpdateExpression::getATrailingComment
/**
* Gets the trailing comments of it
*/
- Parameter
self
:UpdateExpression
- Return
*Comment
pub fn getATrailingComment(self: UpdateExpression) -> *Comment;
UpdateExpression::getEndLineNumber
- Parameter
self
:UpdateExpression
- Return
int
pub fn getEndLineNumber(self: UpdateExpression) -> int;
UpdateExpression::getKind
/**
* Get the syntax kind of this node
*/
- Parameter
self
:UpdateExpression
- Return
int
pub fn getKind(self: UpdateExpression) -> int;
UpdateExpression::getAModifier
/**
* Gets a modifier.
*/
- Parameter
self
:UpdateExpression
- Return
*Modifier
pub fn getAModifier(self: UpdateExpression) -> *Modifier;
UpdateExpression::__all__
Data constraint method.
- Parameter
db
:JavascriptDB
- Return
*UpdateExpression
pub fn __all__(db: JavascriptDB) -> *UpdateExpression;
UpdateExpression::getLocation
/**
* Gets the location of this node.
*/
- Parameter
self
:UpdateExpression
- Return
Location
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.
*/
- Parameter
self
:UpdateExpression
- Parameter
level
:int
- Return
*Node
pub fn getADescendantByLevel(self: UpdateExpression, level: int) -> *Node;
UpdateExpression::getEndColumnNumber
- Parameter
self
:UpdateExpression
- Return
int
pub fn getEndColumnNumber(self: UpdateExpression) -> int;
UpdateExpression::getLastChild
/**
* Gets the last child of this node parent.
*/
- Parameter
self
:UpdateExpression
- Return
Node
pub fn getLastChild(self: UpdateExpression) -> Node;
UpdateExpression::getExpression
- Parameter
self
:UpdateExpression
- Return
Expression
pub fn getExpression(self: UpdateExpression) -> Expression;
UpdateExpression::getParent
/**
* Gets the parent node of this node.
*/
- Parameter
self
:UpdateExpression
- Return
Node
pub fn getParent(self: UpdateExpression) -> Node;
UpdateExpression::getChildCount
/**
* Gets the number of child nodes.
*/
- Parameter
self
:UpdateExpression
- Return
int
pub fn getChildCount(self: UpdateExpression) -> int;
UpdateExpression::getDecorator
/**
* Gets the `i`th decorator.
*/
- Parameter
self
:UpdateExpression
- Parameter
i
:int
- Return
Decorator
pub fn getDecorator(self: UpdateExpression, i: int) -> Decorator;
UpdateExpression::getIndex
- Parameter
self
:UpdateExpression
- Return
int
pub fn getIndex(self: UpdateExpression) -> int;
UpdateExpression::getRelativePath
/**
* Gets the relative path of this node.
*/
- Parameter
self
:UpdateExpression
- Return
string
pub fn getRelativePath(self: UpdateExpression) -> string;
UpdateExpression::getAnAncestorEnclosingFunction
/**
* Gets an ancestor enclosing function of it
*/
- Parameter
self
:UpdateExpression
- Return
*FunctionLikeDeclaration
pub fn getAnAncestorEnclosingFunction(self: UpdateExpression) -> *FunctionLikeDeclaration;
UpdateExpression::getSymbol
/**
* Gets the symbol associated with this node.
*/
- Parameter
self
:UpdateExpression
- Return
Symbol
pub fn getSymbol(self: UpdateExpression) -> Symbol;
UpdateExpression::getRoot
/**
* Gets the root top-level of this node.
*/
- Parameter
self
:UpdateExpression
- Return
TopLevelDO
pub fn getRoot(self: UpdateExpression) -> TopLevelDO;
UpdateExpression::getParentOid
/**
* Gets the parent oid of this node.
*/
- Parameter
self
:UpdateExpression
- Return
int
pub fn getParentOid(self: UpdateExpression) -> int;
UpdateExpression::getEnclosingFunction
/**
* Gets the enclosing function of it
*/
- Parameter
self
:UpdateExpression
- Return
FunctionLikeDeclaration
pub fn getEnclosingFunction(self: UpdateExpression) -> FunctionLikeDeclaration;
UpdateExpression::getADescendant
/**
* Gets a descendant of this node.
*/
- Parameter
self
:UpdateExpression
- Return
*Node
pub fn getADescendant(self: UpdateExpression) -> *Node;
UpdateExpression::getChild
/**
* Gets the `i`th child of this node.
*/
- Parameter
self
:UpdateExpression
- Parameter
i
:int
- Return
Node
pub fn getChild(self: UpdateExpression, i: int) -> Node;
UpdateExpression::getAnAncestor
/**
* Gets an ancestor of this node.
*/
- Parameter
self
:UpdateExpression
- Return
*Node
pub fn getAnAncestor(self: UpdateExpression) -> *Node;
UpdateExpression::getAChild
/**
* Gets a child node of this node.
*/
- Parameter
self
:UpdateExpression
- Return
*Node
pub fn getAChild(self: UpdateExpression) -> *Node;
UpdateExpression::getStartColumnNumber
- Parameter
self
:UpdateExpression
- Return
int
pub fn getStartColumnNumber(self: UpdateExpression) -> int;
UpdateExpression::getStartLineNumber
- Parameter
self
:UpdateExpression
- Return
int
pub fn getStartLineNumber(self: UpdateExpression) -> int;