(entry)
| 53 | } |
| 54 | |
| 55 | static extractCodeEntryType(entry) { |
| 56 | if (entry?.state !== undefined) { |
| 57 | return 'JS ' + Profile.getKindFromState(entry.state); |
| 58 | } |
| 59 | if (entry?.vmState) return Profile.vmStateString(entry.vmState); |
| 60 | return 'Other'; |
| 61 | } |
| 62 | } |
no test coverage detected