extern structstd.pdb.LineNumberEntry[src]

Fields

offset: u32

Offset to start of code bytes for line number

flags: Flags

Source Code

Source code
pub const LineNumberEntry = extern struct {
    /// Offset to start of code bytes for line number
    offset: u32,
    flags: Flags,

    pub const Flags = packed struct(u32) {
        /// Start line number
        start: u24,
        /// Delta of lines to the end of the expression. Still unclear.
        // TODO figure out the point of this field.
        end: u7,
        is_statement: bool,
    };
}