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