summaryrefslogtreecommitdiff
path: root/node_dump.c
AgeCommit message (Collapse)Author
2023-08-23Remove nd_entry from NODE_GASGN and NODE_GVARyui-knk
After a0f12a0258e4020bd657ee80b7d8f22bd33ea223 NODE_GASGN and NODE_GVAR hold same value on both nd_vid and nd_entry. This commit stops setting value to nd_entry and makes to use only nd_vid. Notes: Merged: https://github.com/ruby/ruby/pull/8261
2023-08-22Wrap nd_head in node dump message with bracketsyui-knk
Notes: Merged: https://github.com/ruby/ruby/pull/8260
2023-06-18Fix the format of NODE_EVSTR rendered by dump_nodeyui-knk
Notes: Merged: https://github.com/ruby/ruby/pull/7955
2023-06-12[Feature #19719] Universal Parseryui-knk
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. Notes: Merged: https://github.com/ruby/ruby/pull/7927