PartiallyEmittedExpression

/**
* A partially emitted expression.
* Will not appear in the AST.
*/

Inherit from LeftHandSideExpression

Primary key: id: int

schema PartiallyEmittedExpression extends LeftHandSideExpression {
  @primary id: int
}

PartiallyEmittedExpression::getRelativePath

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

PartiallyEmittedExpression::getAnAncestorEnclosingFunction

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

PartiallyEmittedExpression::getSymbol

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

PartiallyEmittedExpression::getIndex

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

PartiallyEmittedExpression::getDecorator

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

PartiallyEmittedExpression::getChildCount

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

PartiallyEmittedExpression::getLastChild

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

PartiallyEmittedExpression::getEndColumnNumber

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

PartiallyEmittedExpression::getModifier

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

PartiallyEmittedExpression::getParentOid

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

PartiallyEmittedExpression::getADescendant

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

PartiallyEmittedExpression::getEnclosingFunction

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

PartiallyEmittedExpression::getRoot

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

PartiallyEmittedExpression::getChild

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

PartiallyEmittedExpression::getAnAncestor

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

PartiallyEmittedExpression::getParent

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

PartiallyEmittedExpression::getExpression

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

PartiallyEmittedExpression::getStartLineNumber

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

PartiallyEmittedExpression::__all__

Data constraint method.

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

PartiallyEmittedExpression::getLocation

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

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

PartiallyEmittedExpression::getStartColumnNumber

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

PartiallyEmittedExpression::getAChild

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

PartiallyEmittedExpression::getEndLineNumber

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

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

PartiallyEmittedExpression::getATrailingComment

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

PartiallyEmittedExpression::getALeadingComment

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

PartiallyEmittedExpression::getFile

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

PartiallyEmittedExpression::getAComment

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

PartiallyEmittedExpression::getADecorator

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

PartiallyEmittedExpression::getAModifier

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

PartiallyEmittedExpression::getKind

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

PartiallyEmittedExpression::getText

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