(level, from, to)
| 8513 | var outerType = "L"; |
| 8514 | |
| 8515 | function BidiSpan(level, from, to) { |
| 8516 | this.level = level; |
| 8517 | this.from = from; this.to = to; |
| 8518 | } |
| 8519 | |
| 8520 | return function(str) { |
| 8521 | if (!bidiRE.test(str)) return false; |
nothing calls this directly
no outgoing calls
no test coverage detected