enumstd.zig.Zir.ExtraIndex[src]

Fields

compile_errors

If this is 0, no compile errors. Otherwise there is a CompileErrors payload at this index.

imports

If this is 0, this file contains no imports. Otherwise there is a Imports payload at this index.

_

Source Code

Source code
pub const ExtraIndex = enum(u32) {
    /// If this is 0, no compile errors. Otherwise there is a `CompileErrors`
    /// payload at this index.
    compile_errors,
    /// If this is 0, this file contains no imports. Otherwise there is a `Imports`
    /// payload at this index.
    imports,

    _,
}