structstd.zig.Ast.full.SwitchCase.Components[src]

Fields

values: []const Node.Index

If empty, this is an else case

arrow_token: TokenIndex
target_expr: Node.Index

Source Code

Source code
pub const Components = struct {
    /// If empty, this is an else case
    values: []const Node.Index,
    arrow_token: TokenIndex,
    target_expr: Node.Index,
}