Function debugLocalVar [src]
Prototype
pub fn debugLocalVar( self: *Builder, name: MetadataString, file: Metadata, scope: Metadata, line: u32, ty: Metadata, ) Allocator.Error!Metadata Parameters
self: *Buildername: MetadataStringfile: Metadatascope: Metadataline: u32ty: Metadata Source
pub fn debugLocalVar(
self: *Builder,
name: MetadataString,
file: Metadata,
scope: Metadata,
line: u32,
ty: Metadata,
) Allocator.Error!Metadata {
try self.ensureUnusedMetadataCapacity(1, Metadata.LocalVar, 0);
return self.debugLocalVarAssumeCapacity(name, file, scope, line, ty);
}