structstd.zig.Zir.Inst.Func.SrcLocs[src]

Fields

lbrace_line: u32

Line index in the source file relative to the parent decl.

rbrace_line: u32

Line index in the source file relative to the parent decl.

columns: u32

lbrace_column is least significant bits u16 rbrace_column is most significant bits u16

Source Code

Source code
pub const SrcLocs = struct {
    /// Line index in the source file relative to the parent decl.
    lbrace_line: u32,
    /// Line index in the source file relative to the parent decl.
    rbrace_line: u32,
    /// lbrace_column is least significant bits u16
    /// rbrace_column is most significant bits u16
    columns: u32,
}