Skip to main content
Module

x/ts_morph/ts_morph.d.ts>ContinueStatement

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Latest
class ContinueStatement
extends Statement<ts.ContinueStatement>
import { ContinueStatement } from "https://deno.land/x/ts_morph@22.0.0/ts_morph.d.ts";

Methods

getLabel(): Identifier | undefined

Gets this continue statement's label or undefined if it does not exist.

getLabelOrThrow(message?: string | (() => string)): Identifier

Gets this continue statement's label or throw if it does not exist.

getParent(): NodeParentType<ts.ContinueStatement>
getParentOrThrow(message?: string | (() => string)): NonNullable<NodeParentType<ts.ContinueStatement>>