structstd.zig.Ast.full.StructInit[src]

Fields

Source Code

Source code
pub const StructInit = struct {
    ast: Components,

    pub const Components = struct {
        lbrace: TokenIndex,
        fields: []const Node.Index,
        type_expr: Node.Index,
    };
}