(at, level)
| 299 | } |
| 300 | |
| 301 | function recurSortConflictsOf(at, level) { |
| 302 | var a = (cmGetLineNumber(at.h1)); |
| 303 | var b = (cmGetLineNumber(at.h2)); |
| 304 | at.level = level; |
| 305 | at.deltWith = 1; |
| 306 | raph.forEach(function (e) { |
| 307 | if ("isHandleDecorator" in e && e.deltWith == 0 && e != at) { |
| 308 | var a2 = (cmGetLineNumber(e.h1)); |
| 309 | var b2 = (cmGetLineNumber(e.h2)); |
| 310 | |
| 311 | if (a2 <= b && b2 >= a) { |
| 312 | recurSortConflictsOf(e, level + 1); |
| 313 | } |
| 314 | } |
| 315 | }) |
| 316 | } |
| 317 | |
| 318 | function sortConflicts() { |
| 319 | raph.forEach(function (e) { |
no test coverage detected