(level, from, to)
| 8756 | var outerType = "L"; |
| 8757 | |
| 8758 | function BidiSpan(level, from, to) { |
| 8759 | this.level = level; |
| 8760 | this.from = from; this.to = to; |
| 8761 | } |
| 8762 | |
| 8763 | return function(str) { |
| 8764 | if (!bidiRE.test(str)) return false; |
nothing calls this directly
no outgoing calls
no test coverage detected