feature. See also
. The project being documented here (as the example) is the Zig library itself.
Builder.debugParameter
pub fn debugParameter(
self: *Builder,
name: ?Metadata.String,
file: ?Metadata,
scope: ?Metadata,
line: u32,
ty: ?Metadata,
arg_no: u32,
) Allocator.Error!Metadata
File
Code
pub fn debugParameter(
self: *Builder,
name: ?Metadata.String,
file: ?Metadata,
scope: ?Metadata,
line: u32,
ty: ?Metadata,
arg_no: u32,
) Allocator.Error!Metadata {
try self.ensureUnusedMetadataCapacity(1, Metadata.Parameter, 0);
return self.debugParameterAssumeCapacity(name, file, scope, line, ty, arg_no);
}