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

Fields

while_token: TokenIndex
cond_expr: Node.Index
cont_expr: Node.Index
then_expr: Node.Index
else_expr: Node.Index

Source Code

Source code
pub const Components = struct {
    while_token: TokenIndex,
    cond_expr: Node.Index,
    cont_expr: Node.Index,
    then_expr: Node.Index,
    else_expr: Node.Index,
}