From b481b673d753339204290d7582dbb91a6e14447a Mon Sep 17 00:00:00 2001 From: yui-knk Date: Sun, 28 May 2023 20:00:20 +0900 Subject: [Feature #19719] Universal Parser 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. --- load.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'load.c') diff --git a/load.c b/load.c index da81becfc1..debc544038 100644 --- a/load.c +++ b/load.c @@ -9,7 +9,7 @@ #include "internal/error.h" #include "internal/file.h" #include "internal/load.h" -#include "internal/parse.h" +#include "internal/ruby_parser.h" #include "internal/thread.h" #include "internal/variable.h" #include "iseq.h" -- cgit v1.2.3