Skip to main content
Module

x/deno2node/src/deps.deno.ts>SwitchStatement

Compile your Deno project to run on Node.js.
Go to Latest
class SwitchStatement
extends SwitchStatementBase<ts.SwitchStatement>
import { SwitchStatement } from "https://deno.land/x/deno2node@v1.7.1/src/deps.deno.ts";

Methods

Gets this switch statement's case block.

Gets the switch statement's case block's clauses.

getParent(): NodeParentType<ts.SwitchStatement>
getParentOrThrow(message?: string | (() => string)): NonNullable<NodeParentType<ts.SwitchStatement>>
removeClause(index: number): CaseBlock

Removes the specified clause based on the provided index.

removeClauses(indexRange: [number, number]): CaseBlock

Removes the specified clauses based on the provided index range.