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

Fields

Source Code

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

    pub const Components = struct {
        lbracket: TokenIndex,
        elem_count: Node.Index,
        sentinel: Node.Index,
        elem_type: Node.Index,
    };
}