(line, direction)
| 519 | // false for lines that are fully left-to-right, and an array of |
| 520 | // BidiSpan objects otherwise. |
| 521 | function getOrder(line, direction) { |
| 522 | var order = line.order; |
| 523 | if (order == null) { order = line.order = bidiOrdering(line.text, direction); } |
| 524 | return order |
| 525 | } |
| 526 | |
| 527 | // EVENT HANDLING |
| 528 |
no outgoing calls
no test coverage detected