()
| 176 | } |
| 177 | |
| 178 | get toolTipDict() { |
| 179 | const dict = super.toolTipDict; |
| 180 | dict.size = formatBytes(dict.size); |
| 181 | dict.source = new CodeString(dict.source); |
| 182 | if (dict.code) dict.code = new CodeString(dict.code); |
| 183 | return dict; |
| 184 | } |
| 185 | |
| 186 | static get propertyNames() { |
| 187 | return [ |
nothing calls this directly
no test coverage detected