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.
*/
pub fn getSymbol(self: ContinueStatement) -> Symbol;

ContinueStatement::getAnAncestorEnclosingFunction

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

ContinueStatement::getIndex

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

ContinueStatement::getParentOid

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

ContinueStatement::getRelativePath

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

ContinueStatement::getLastChild

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

ContinueStatement::getEndColumnNumber

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

ContinueStatement::getParent

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

ContinueStatement::getChildCount

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

ContinueStatement::getDecorator

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

ContinueStatement::getEndLineNumber

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

ContinueStatement::getATrailingComment

/**
* Gets the trailing comments of it
*/
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.
*/
pub fn getAnAncestorByLevel(self: ContinueStatement, level: int) -> Node;

ContinueStatement::getChild

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

ContinueStatement::getRoot

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

ContinueStatement::getAChild

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

ContinueStatement::getStartColumnNumber

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

ContinueStatement::getStartLineNumber

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

ContinueStatement::__all__

Data constraint method.

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

ContinueStatement::getLocation

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

ContinueStatement::getKind

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

ContinueStatement::getAModifier

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

ContinueStatement::getAnAncestor

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

ContinueStatement::getEnclosingFunction

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

ContinueStatement::getADescendant

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

ContinueStatement::getALeadingComment

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

ContinueStatement::getFile

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

ContinueStatement::getModifier

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

ContinueStatement::getText

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

ContinueStatement::getAComment

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

ContinueStatement::getADecorator

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