| 9460 | */ |
| 9461 | |
| 9462 | static void |
| 9463 | xmlXPathCompFilterExpr(xmlXPathParserContextPtr ctxt) { |
| 9464 | xmlXPathCompPrimaryExpr(ctxt); |
| 9465 | CHECK_ERROR; |
| 9466 | SKIP_BLANKS; |
| 9467 | |
| 9468 | while (CUR == '[') { |
| 9469 | xmlXPathCompPredicate(ctxt, 1); |
| 9470 | SKIP_BLANKS; |
| 9471 | } |
| 9472 | |
| 9473 | |
| 9474 | } |
| 9475 | |
| 9476 | /** |
| 9477 | * xmlXPathScanName: |
no test coverage detected