structstd.zig.Zir.Inst.Imports[src]

Trailing: for each imports_len there is an Item

Fields

imports_len: u32

Source Code

Source code
pub const Imports = struct {
    imports_len: u32,

    pub const Item = struct {
        /// null terminated string index
        name: NullTerminatedString,
        /// points to the import name
        token: Ast.TokenIndex,
    };
}