(row)
| 188 | |
| 189 | class DebugRowBehavior extends RowBehavior { |
| 190 | onTap(row) { |
| 191 | if (this.data.line) |
| 192 | model.selectFile(this.data.value, { line: this.data.line }); |
| 193 | else |
| 194 | row.bubble("doToggleItem", this.data.value); |
| 195 | } |
| 196 | }; |
| 197 | |
| 198 | class CallTableBehavior extends DebugTableBehavior { |
nothing calls this directly
no test coverage detected