| ... | ... | @@ -1430,7 +1430,7 @@ pub const ModuleDebugInfo = switch (builtin.os.tag) { |
| 1430 | 1430 | return di; |
| 1431 | 1431 | } |
| 1432 | 1432 | |
| 1433 | | fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1433 | pub fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1434 | 1434 | nosuspend { |
| 1435 | 1435 | // Translate the VA into an address into this object |
| 1436 | 1436 | const relocated_address = address - self.base_address; |
| ... | ... | @@ -1499,7 +1499,7 @@ pub const ModuleDebugInfo = switch (builtin.os.tag) { |
| 1499 | 1499 | return self.coff.allocator; |
| 1500 | 1500 | } |
| 1501 | 1501 | |
| 1502 | | fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1502 | pub fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1503 | 1503 | // Translate the VA into an address into this object |
| 1504 | 1504 | const relocated_address = address - self.base_address; |
| 1505 | 1505 | |
| ... | ... | @@ -1652,7 +1652,7 @@ pub const ModuleDebugInfo = switch (builtin.os.tag) { |
| 1652 | 1652 | dwarf: DW.DwarfInfo, |
| 1653 | 1653 | mapped_memory: []const u8, |
| 1654 | 1654 | |
| 1655 | | fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1655 | pub fn getSymbolAtAddress(self: *@This(), address: usize) !SymbolInfo { |
| 1656 | 1656 | // Translate the VA into an address into this object |
| 1657 | 1657 | const relocated_address = address - self.base_address; |
| 1658 | 1658 | |