* Parse a match expr. */
| 856 | * Parse a match expr. |
| 857 | */ |
| 858 | MatchExpr *parseMatch(const ELF &elf, const char *str) |
| 859 | { |
| 860 | Parser parser(str, "matching", elf); |
| 861 | MatchExpr *expr = parseMatchExpr(parser); |
| 862 | parser.expectToken(TOKEN_EOF); |
| 863 | return expr; |
| 864 | } |
| 865 | |
| 866 | /* |
| 867 | * Parse a function name. |
no test coverage detected