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

Fields

node: Ast.Node.Index

This node is absolute, because reify instructions are tracked across updates, and this simplifies the logic for getting source locations for types.

operand: Ref
src_line: u32

Source Code

Source code
pub const Reify = struct {
    /// This node is absolute, because `reify` instructions are tracked across updates, and
    /// this simplifies the logic for getting source locations for types.
    node: Ast.Node.Index,
    operand: Ref,
    src_line: u32,
}