(result: object)
| 156 | } |
| 157 | |
| 158 | private tryAddMemoryReference(result: object): void { |
| 159 | if ((this.numchild > 0 || this.type === 'void *') |
| 160 | && this.value.startsWith('0x')) { |
| 161 | result['memoryReference'] = hexFormat(parseInt(this.value)); |
| 162 | } |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | // from https://gist.github.com/justmoon/15511f92e5216fa2624b#gistcomment-1928632 |
no test coverage detected