diff options
author | S-H-GAMELINKS <[email protected]> | 2025-01-04 13:42:22 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2025-01-06 20:17:47 +0900 |
commit | 975461bf885b8fb791cf048ad39c79924d28e4e9 () | |
tree | b3ded6314ae6514a70be109564a1fa1d52bbbbb0 /rubyparser.h | |
parent | e0591b666f763a5adc3bad0772c214e11128d81b (diff) |
Remove SYM2ID for Parser
Ruby Parser not used SYM2ID. And sym2id property can be removed from Universal Parser.
Notes: Merged: https://.com/ruby/ruby/pull/12507
-rw-r--r-- | rubyparser.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1233,7 +1233,6 @@ typedef struct rb_parser_config_struct { const char *(*id2name)(ID id); VALUE (*id2str)(ID id); VALUE (*id2sym)(ID x); - ID (*sym2id)(VALUE sym); /* String */ RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT, 2, 3) |