(name, subtypeName, entries)
| 500 | } |
| 501 | |
| 502 | addRow(name, subtypeName, entries) { |
| 503 | const tr = DOM.tr(); |
| 504 | tr.appendChild(DOM.td(name)); |
| 505 | tr.appendChild(DOM.td(subtypeName)); |
| 506 | tr.appendChild(DOM.td(entries.length)); |
| 507 | const button = |
| 508 | DOM.button('🔎', this._scriptPanel.showToolTipEntriesHandler); |
| 509 | button.title = `Show all ${entries.length} ${name || subtypeName} entries.` |
| 510 | button.data = entries; |
| 511 | tr.appendChild(DOM.td(button)); |
| 512 | this.tableNode.appendChild(tr); |
| 513 | } |
| 514 | } |
| 515 | |
| 516 | class SourcePositionIterator { |
no test coverage detected