summaryrefslogtreecommitdiff
path: root/rubyparser.h
diff options
context:
space:
mode:
authoryui-knk <spiketeika@gmail.com>2023-10-01 13:19:55 +0900
committerYuichiro Kaneko <spiketeika@gmail.com>2023-10-02 09:41:45 +0900
commit81668579ed0cf90b95f2fcc5755b51842fb65917 (patch)
treeb3a468b02ca8d9aa1a5952e41f3e8e54f77d8944 /rubyparser.h
parentb1131851e085a4d1e5b56599adea1b851be97563 (diff)
Remove not used fields from call nodes
Diffstat (limited to 'rubyparser.h')
-rw-r--r--rubyparser.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/rubyparser.h b/rubyparser.h
index 0712d7a40e..44ab4eaa50 100644
--- a/rubyparser.h
+++ b/rubyparser.h
@@ -453,7 +453,6 @@ typedef struct RNode_OP_CDECL {
ID nd_aid;
} rb_node_op_cdecl_t;
-/* RNode_CALL, RNode_OPCALL and RNode_QCALL should be same structure */
typedef struct RNode_CALL {
NODE node;
@@ -473,7 +472,6 @@ typedef struct RNode_OPCALL {
typedef struct RNode_FCALL {
NODE node;
- VALUE not_used;
ID nd_mid;
struct RNode *nd_args;
} rb_node_fcall_t;
@@ -481,9 +479,7 @@ typedef struct RNode_FCALL {
typedef struct RNode_VCALL {
NODE node;
- VALUE not_used;
ID nd_mid;
- VALUE not_used2;
} rb_node_vcall_t;
typedef struct RNode_QCALL {
@@ -497,17 +493,11 @@ typedef struct RNode_QCALL {
typedef struct RNode_SUPER {
NODE node;
- VALUE not_used;
- VALUE not_used2;
struct RNode *nd_args;
} rb_node_super_t;
typedef struct RNode_ZSUPER {
NODE node;
-
- VALUE not_used;
- VALUE not_used2;
- VALUE not_used3;
} rb_node_zsuper_t;
/*