(line)
| 6525 | // false for lines that are fully left-to-right, and an array of |
| 6526 | // BidiSpan objects otherwise. |
| 6527 | function getOrder(line) { |
| 6528 | var order = line.order; |
| 6529 | if (order == null) order = line.order = bidiOrdering(line.text); |
| 6530 | return order; |
| 6531 | } |
| 6532 | |
| 6533 | // HISTORY |
| 6534 |
no outgoing calls
no test coverage detected