Function getSelfDebugInfo [src]

Prototype

pub fn getSelfDebugInfo() !*SelfInfo

Source

pub fn getSelfDebugInfo() !*SelfInfo { if (self_debug_info) |*info| { return info; } else { self_debug_info = try SelfInfo.open(getDebugInfoAllocator()); return &self_debug_info.?; } }