(line)
| 7858 | // false for lines that are fully left-to-right, and an array of |
| 7859 | // BidiSpan objects otherwise. |
| 7860 | function getOrder(line) { |
| 7861 | var order = line.order; |
| 7862 | if (order == null) order = line.order = bidiOrdering(line.text); |
| 7863 | return order; |
| 7864 | } |
| 7865 | |
| 7866 | // HISTORY |
| 7867 |
no outgoing calls
no test coverage detected