(line)
| 7627 | // false for lines that are fully left-to-right, and an array of |
| 7628 | // BidiSpan objects otherwise. |
| 7629 | function getOrder(line) { |
| 7630 | var order = line.order; |
| 7631 | if (order == null) order = line.order = bidiOrdering(line.text); |
| 7632 | return order; |
| 7633 | } |
| 7634 | |
| 7635 | // HISTORY |
| 7636 |
no outgoing calls
no test coverage detected