( matchers )
| 2309 | } |
| 2310 | |
| 2311 | function elementMatcher( matchers ) { |
| 2312 | return matchers.length > 1 ? |
| 2313 | function( elem, context, xml ) { |
| 2314 | var i = matchers.length; |
| 2315 | while ( i-- ) { |
| 2316 | if ( !matchers[i]( elem, context, xml ) ) { |
| 2317 | return false; |
| 2318 | } |
| 2319 | } |
| 2320 | return true; |
| 2321 | } : |
| 2322 | matchers[0]; |
| 2323 | } |
| 2324 | |
| 2325 | function multipleContexts( selector, contexts, results ) { |
| 2326 | var i = 0, |
no outgoing calls
no test coverage detected
searching dependent graphs…