()
| 61 | let conds = []; |
| 62 | |
| 63 | const pushCond = () => { |
| 64 | if (text || sType === SelectorType.Universal) conds.push({ type: sType, text }); |
| 65 | sType = SelectorType.Tag; |
| 66 | text = ''; |
| 67 | }; |
| 68 | |
| 69 | const isCombinator = c => [' ', '>'].includes(c); |
| 70 |
nothing calls this directly
no outgoing calls
no test coverage detected