| 55 | } |
| 56 | |
| 57 | void BlrDebugWriter::putDebugSrcInfo(ULONG line, ULONG col) |
| 58 | { |
| 59 | if (debugData.isEmpty()) |
| 60 | return; |
| 61 | |
| 62 | debugData.add(fb_dbg_map_src2blr); |
| 63 | |
| 64 | putValue(line); |
| 65 | putValue(col); |
| 66 | putBlrOffset(); |
| 67 | } |
| 68 | |
| 69 | void BlrDebugWriter::putDebugVariable(USHORT number, const MetaName& name) |
| 70 | { |