(h1, h2)
| 286 | } |
| 287 | |
| 288 | function findPathForLines(h1, h2) { |
| 289 | var found; |
| 290 | raph.forEach(function (e) { |
| 291 | if ("isHandleDecorator" in e) { |
| 292 | if (cmGetLineNumber(e.h1) == h1 && cmGetLineNumber(e.h2) == h2) |
| 293 | found = e |
| 294 | } |
| 295 | else console.log("didn't find isHandleDecorator in ",e) |
| 296 | |
| 297 | }); |
| 298 | return found; |
| 299 | } |
| 300 | |
| 301 | function recurSortConflictsOf(at, level) { |
| 302 | var a = (cmGetLineNumber(at.h1)); |
no test coverage detected