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

Fields

for_token: TokenIndex
inputs: []const Node.Index
then_expr: Node.Index
else_expr: Node.Index

Source Code

Source code
pub const Components = struct {
    for_token: TokenIndex,
    inputs: []const Node.Index,
    then_expr: Node.Index,
    else_expr: Node.Index,
}