diff options
author | Takashi Kokubun <[email protected]> | 2022-07-21 09:23:58 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-07-21 09:42:04 -0700 |
commit | 5b21e94bebed90180d8ff63dad03b8b948361089 () | |
tree | f9f7196d84b51b7a3a8001658e4391a63b71c396 /node.h | |
parent | 3ff53c8e04ecc91e0190de6d5950ecce2a2ea188 (diff) |
Expand tabs [ci skip]
[Misc #18891]
Notes: Merged: https://.com/ruby/ruby/pull/6094
-rw-r--r-- | node.h | 30 |
1 files changed, 15 insertions, 15 deletions
@@ -155,25 +155,25 @@ typedef struct rb_ast_id_table { typedef struct RNode { VALUE flags; union { - struct RNode *node; - ID id; - VALUE value; - rb_ast_id_table_t *tbl; } u1; union { - struct RNode *node; - ID id; - long argc; - VALUE value; } u2; union { - struct RNode *node; - ID id; - long state; - struct rb_args_info *args; - struct rb_ary_pattern_info *apinfo; - struct rb_fnd_pattern_info *fpinfo; - VALUE value; } u3; rb_code_location_t nd_loc; int node_id; |