( matchers )
| 2196 | } |
| 2197 | |
| 2198 | function elementMatcher( matchers ) { |
| 2199 | return matchers.length > 1 ? |
| 2200 | function( elem, context, xml ) { |
| 2201 | var i = matchers.length; |
| 2202 | while ( i-- ) { |
| 2203 | if ( !matchers[i]( elem, context, xml ) ) { |
| 2204 | return false; |
| 2205 | } |
| 2206 | } |
| 2207 | return true; |
| 2208 | } : |
| 2209 | matchers[0]; |
| 2210 | } |
| 2211 | |
| 2212 | function multipleContexts( selector, contexts, results ) { |
| 2213 | var i = 0, |