(line)
| 6575 | // false for lines that are fully left-to-right, and an array of |
| 6576 | // BidiSpan objects otherwise. |
| 6577 | function getOrder(line) { |
| 6578 | var order = line.order; |
| 6579 | if (order == null) order = line.order = bidiOrdering(line.text); |
| 6580 | return order; |
| 6581 | } |
| 6582 | |
| 6583 | // HISTORY |
| 6584 |
no outgoing calls
no test coverage detected
searching dependent graphs…