(code)
| 103 | } |
| 104 | } |
| 105 | _entrySummary(code) { |
| 106 | if (code.isBuiltinKind) { |
| 107 | return `${code.functionName}(...) t=${ |
| 108 | formatMicroSeconds(code.time)} size=${formatBytes(code.size)}`; |
| 109 | } |
| 110 | return `${code.functionName}(...) t=${ |
| 111 | formatMicroSeconds(code.time)} size=${ |
| 112 | formatBytes(code.size)} script=${code.script?.toString()}`; |
| 113 | } |
| 114 | |
| 115 | _handleSelectCode() { |
| 116 | this.entry = this._codeSelectNode.selectedOptions[0].data; |
no test coverage detected