NotEmittedStatement

/**
* A not-emmitted statement.
* Will not appear in the AST.
*/

Inherit from Statement

Primary key: id: int

schema NotEmittedStatement extends Statement {
  @primary id: int
}

NotEmittedStatement::getSymbol

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

NotEmittedStatement::getAnAncestorEnclosingFunction

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

NotEmittedStatement::getIndex

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

NotEmittedStatement::getParentOid

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

NotEmittedStatement::getRelativePath

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

NotEmittedStatement::getLastChild

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

NotEmittedStatement::getEndColumnNumber

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

NotEmittedStatement::getParent

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

NotEmittedStatement::getChildCount

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

NotEmittedStatement::getDecorator

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

NotEmittedStatement::getEndLineNumber

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

NotEmittedStatement::getATrailingComment

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

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

NotEmittedStatement::getChild

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

NotEmittedStatement::getRoot

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

NotEmittedStatement::getAChild

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

NotEmittedStatement::getStartColumnNumber

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

NotEmittedStatement::getStartLineNumber

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

NotEmittedStatement::__all__

Data constraint method.

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

NotEmittedStatement::getLocation

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

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

NotEmittedStatement::getKind

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

NotEmittedStatement::getAModifier

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

NotEmittedStatement::getAnAncestor

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

NotEmittedStatement::getEnclosingFunction

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

NotEmittedStatement::getADescendant

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

NotEmittedStatement::getALeadingComment

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

NotEmittedStatement::getFile

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

NotEmittedStatement::getModifier

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

NotEmittedStatement::getText

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

NotEmittedStatement::getAComment

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

NotEmittedStatement::getADecorator

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