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