(line, direction)
| 1919 | // false for lines that are fully left-to-right, and an array of |
| 1920 | // BidiSpan objects otherwise. |
| 1921 | function getOrder(line, direction) { |
| 1922 | var order = line.order |
| 1923 | if (order == null) { |
| 1924 | order = line.order = bidiOrdering(line.text, direction) |
| 1925 | } |
| 1926 | return order |
| 1927 | } |
| 1928 | |
| 1929 | // EVENT HANDLING |
| 1930 |
no outgoing calls
no test coverage detected