(line)
| 7890 | // false for lines that are fully left-to-right, and an array of |
| 7891 | // BidiSpan objects otherwise. |
| 7892 | function getOrder(line) { |
| 7893 | var order = line.order; |
| 7894 | if (order == null) order = line.order = bidiOrdering(line.text); |
| 7895 | return order; |
| 7896 | } |
| 7897 | |
| 7898 | // HISTORY |
| 7899 |
no outgoing calls
no test coverage detected