()
| 38 | } |
| 39 | |
| 40 | get toolTipDict() { |
| 41 | const dict = super.toolTipDict; |
| 42 | dict.startTime = formatDurationMicros(dict.startTime); |
| 43 | dict.endTime = formatDurationMicros(dict.endTime); |
| 44 | dict.duration = formatDurationMicros(dict.duration); |
| 45 | return dict; |
| 46 | } |
| 47 | |
| 48 | static get propertyNames() { |
| 49 | return [ |
nothing calls this directly
no test coverage detected