(data)
| 282 | }; |
| 283 | |
| 284 | export function highlight(data) { |
| 285 | if (data instanceof jQuery.Event) { |
| 286 | processHighlight($(data.data.selector)); |
| 287 | } else { |
| 288 | processHighlight(data); |
| 289 | } |
| 290 | }; |
| 291 | |
| 292 | const aliasMap = new Map(); |
| 293 |
nothing calls this directly
no test coverage detected
searching dependent graphs…