Class ASTStmtSwitch


public final class ASTStmtSwitch extends ASTStatement
AST node for an LPC switch statement.

Case labels may be either exact values, such as case 3:, or inclusive ranges, such as case 1..2:. The range form is part of common LPC switch syntax and is kept explicit here so lowering can preserve fallthrough and default handling without rewriting the source-level shape.