Ruby 4.1.0dev (2026-09-13 revision 81ab701fa1c0685c19d56aa6e3c688e31256fea2)
tokens.h
1#ifndef PRISM_INTERNAL_TOKENS_H
2#define PRISM_INTERNAL_TOKENS_H
3
4#include "prism/ast.h"
5
6/*
7 * Returns the human name of the given token type.
8 */
9const char * pm_token_str(pm_token_type_t token_type);
10
11#endif