(index: number)
| 111 | let rootWeight = 0; |
| 112 | |
| 113 | function printSelectedMarker(index: number): string { |
| 114 | if (state === null) { |
| 115 | return ''; |
| 116 | } |
| 117 | return state.inspectedElementIndex === index ? `→` : ' '; |
| 118 | } |
| 119 | |
| 120 | function printErrorsAndWarnings(element: Element): string { |
| 121 | const {errorCount, warningCount} = |