(dv, style = {pretty: options.pretty})
| 106 | } |
| 107 | |
| 108 | function showDebuggeeValue(dv, style = {pretty: options.pretty}) { |
| 109 | const i = nextDebuggeeValueIndex++; |
| 110 | debuggeeValues[`$${i}`] = dv; |
| 111 | debuggeeValues['$$'] = dv; |
| 112 | const [brief, full] = debuggeeValueToString(dv, style); |
| 113 | print(`$${i} = ${brief}`); |
| 114 | if (full !== undefined) |
| 115 | print(full); |
| 116 | } |
| 117 | |
| 118 | Object.defineProperty(Debugger.Frame.prototype, 'num', { |
| 119 | configurable: true, |
no test coverage detected