mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00

Introduce Universal Parser mode for the parser. This commit includes these changes: * Introduce `UNIVERSAL_PARSER` macro. All of CRuby related functions are passed via `struct rb_parser_config_struct` when this macro is enabled. * Add CI task with 'cppflags=-DUNIVERSAL_PARSER' for ubuntu.
8 lines
209 B
C
8 lines
209 B
C
#ifndef RIPPER_EVENTIDS2
|
|
#define RIPPER_EVENTIDS2
|
|
|
|
void ripper_init_eventids2(void);
|
|
void ripper_init_eventids2_table(VALUE self);
|
|
ID ripper_token2eventid(enum yytokentype tok);
|
|
|
|
#endif /* RIPPER_EVENTIDS2 */
|