Function poisonConst [src]
Prototype
pub fn poisonConst(self: *Builder, ty: Type) Allocator.Error!Constant
Parameters
self: *Builder
ty: Type
Source
pub fn poisonConst(self: *Builder, ty: Type) Allocator.Error!Constant {
try self.ensureUnusedConstantCapacity(1, NoExtra, 0);
return self.poisonConstAssumeCapacity(ty);
}