(frame, index)
| 437 | } |
| 438 | |
| 439 | execStateFrameLocalName(frame, index) { |
| 440 | const scope_details = this.getLocalScopeDetails(frame); |
| 441 | if (index < 0 || index >= scope_details.length) return undefined; |
| 442 | return scope_details[index].name; |
| 443 | } |
| 444 | |
| 445 | execStateFrameLocalValue(frame, index) { |
| 446 | const scope_details = this.getLocalScopeDetails(frame); |
no test coverage detected