LeftHandSideExpression

/**
* A left-hand-side expression.
*/

Inherit from UpdateExpression

Primary key: id: int

schema LeftHandSideExpression extends UpdateExpression {
  @primary id: int
}

LeftHandSideExpression::getStartLineNumber

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

LeftHandSideExpression::getStartColumnNumber

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

LeftHandSideExpression::getAChild

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

LeftHandSideExpression::getAnAncestor

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

LeftHandSideExpression::getChild

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

LeftHandSideExpression::getADescendant

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

LeftHandSideExpression::getEnclosingFunction

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

LeftHandSideExpression::getParentOid

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

LeftHandSideExpression::getRoot

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

LeftHandSideExpression::getEndLineNumber

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.
*/
pub fn getAnAncestorByLevel(self: LeftHandSideExpression, level: int) -> Node;

LeftHandSideExpression::getATrailingComment

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

LeftHandSideExpression::getALeadingComment

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

LeftHandSideExpression::getFile

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

LeftHandSideExpression::getADecorator

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

LeftHandSideExpression::getAComment

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

LeftHandSideExpression::__all__

Data constraint method.

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

LeftHandSideExpression::getKind

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

LeftHandSideExpression::getAModifier

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

LeftHandSideExpression::getLocation

/**
* Gets the location of this node.
*/
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.
*/
pub fn getADescendantByLevel(self: LeftHandSideExpression, level: int) -> *Node;

LeftHandSideExpression::getText

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

LeftHandSideExpression::getModifier

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

LeftHandSideExpression::getEndColumnNumber

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

LeftHandSideExpression::getLastChild

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

LeftHandSideExpression::getParent

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

LeftHandSideExpression::getExpression

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

LeftHandSideExpression::getChildCount

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

LeftHandSideExpression::getDecorator

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

LeftHandSideExpression::getIndex

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

LeftHandSideExpression::getSymbol

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

LeftHandSideExpression::getAnAncestorEnclosingFunction

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

LeftHandSideExpression::getRelativePath

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