We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 202cb99 commit 698fe54Copy full SHA for 698fe54
ChangeLog
@@ -1,4 +1,7 @@
1
-Thu Dec 16 07:51:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
+Thu Dec 16 08:04:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
+
3
+ * node.h (RNode): match the type of flags to RBasic, and renamed
4
+ nd_file as nd_reserved.
5
6
* iseq.c (set_relation), vm_insnhelper.c (vm_cref_push): nd_file
7
is always zero-cleared.
node.h
@@ -233,8 +233,8 @@ enum node_type {
233
};
234
235
typedef struct RNode {
236
- unsigned long flags;
237
- char *nd_file;
+ VALUE flags;
+ VALUE nd_reserved; /* ex nd_file */
238
union {
239
struct RNode *node;
240
ID id;
0 commit comments