(maxEntries = 32)
| 249 | } |
| 250 | |
| 251 | stack(maxEntries = 32): void { |
| 252 | const session = this.getPausedSession(); |
| 253 | if (session === null || session.context === null) { |
| 254 | return; |
| 255 | } |
| 256 | |
| 257 | session.lastStack = logStack(session.context, this.normalizeCount(maxEntries, 32), session.lastStack); |
| 258 | } |
| 259 | |
| 260 | registers(): void { |
| 261 | const session = this.getPausedSession(); |
no test coverage detected