( higher, deeper )
| 5684 | } |
| 5685 | |
| 5686 | function addMatcher( higher, deeper ) { |
| 5687 | return higher ? |
| 5688 | function( elem ) { |
| 5689 | var result = deeper( elem ); |
| 5690 | return result && higher( result === true ? elem : result ); |
| 5691 | } : |
| 5692 | deeper; |
| 5693 | } |
| 5694 | |
| 5695 | // ["TAG", ">", "ID", " ", "CLASS"] |
| 5696 | function matcherFromTokens( tokens, context, xml ) { |
no outgoing calls
no test coverage detected
searching dependent graphs…