(entry)
| 38 | } |
| 39 | |
| 40 | set entry(entry) { |
| 41 | this._entry = entry; |
| 42 | if (!entry) { |
| 43 | this._propertiesNode.propertyDict = {}; |
| 44 | } else { |
| 45 | this._propertiesNode.propertyDict = { |
| 46 | '__this__': entry, |
| 47 | functionName: entry.functionName, |
| 48 | size: formatBytes(entry.size), |
| 49 | creationTime: formatMicroSeconds(entry.time / 1000), |
| 50 | sourcePosition: entry.sourcePosition, |
| 51 | script: entry.script, |
| 52 | type: entry.type, |
| 53 | kind: entry.kindName, |
| 54 | variants: entry.variants.length > 1 ? |
| 55 | [undefined, ...entry.variants] : |
| 56 | undefined, |
| 57 | }; |
| 58 | } |
| 59 | this.requestUpdate(); |
| 60 | } |
| 61 | |
| 62 | _update() { |
| 63 | this._updateSelect(); |
nothing calls this directly
no test coverage detected