DoxigAlpha

writeSkip

Function parameters

Parameters

#
writer:anytype
offset:i16

Expressions can be evaluated in different contexts, each requiring its own set of inputs.

Types

#
Context
Expressions can be evaluated in different contexts, each requiring its own set of inputs.

A stack machine that can decode and run DWARF expressions.

Functions

#
StackMachine
A stack machine that can decode and run DWARF expressions.

Error sets in this namespace

Error Sets

#

Source

Implementation

#
pub fn writeSkip(writer: anytype, offset: i16) !void {
    try writer.writeByte(OP.skip);
    try writer.writeInt(i16, offset, options.endian);
}