tiny.chant.ast.variable
Defined in ast.
API (1)
Types and contracts
Public types and contracts.
Source
Source: lib/chant/src/ast/root.zig:6
zig
pub const variable = @import("variable.zig");Source: lib/chant/src/ast/variable.zig
zig
const types = @import("type/root.zig");const expr = @import("expr.zig");const storage = @import("storage.zig");pub const Variable = struct { name: []const u8, type: *const types.Type, storage: storage.Storage = .none, alignment: ?u64 = null, is_constexpr: bool = false, is_thread_local: bool = false, initializer: ?*expr.Expr = null,};Audit
| Definitions | 2 |
|---|---|
| Public names | 3 |
| Members | 7 |
| Version | 26.7.0 |
| Revision | daab053ee433 |