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