Ruby 4.1.0dev (2026-09-27 revision 7fb3844370953f355e3b469109b7f435d6c0d29a)
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