* Get the name of a token. */
| 733 | * Get the name of a token. |
| 734 | */ |
| 735 | const char *Parser::getName(int token) const |
| 736 | { |
| 737 | return getNameFromToken((Token)token); |
| 738 | } |
| 739 | |
| 740 | /* |
| 741 | * Get a "blob" of characters. Used for regex and filename tokens. |
no test coverage detected