(frame)
| 432 | } |
| 433 | |
| 434 | execStateFrameLocalCount(frame) { |
| 435 | const scope_details = this.getLocalScopeDetails(frame); |
| 436 | return scope_details ? scope_details.length : 0; |
| 437 | } |
| 438 | |
| 439 | execStateFrameLocalName(frame, index) { |
| 440 | const scope_details = this.getLocalScopeDetails(frame); |
no test coverage detected