File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ typedef struct {
15
15
} SixModelObjectCommonalities ;
16
16
17
17
typedef struct {
18
- PMC * class_handle ; /* Class handle */
18
+ PMC * class_handle ; /* Class handle */
19
19
STRING * att_name ; /* Name of the attribute. */
20
20
} ParrotVtableHandlerSlot ;
21
21
@@ -24,6 +24,9 @@ typedef struct {
24
24
typedef struct {
25
25
/* The representation. */
26
26
PMC * REPR ;
27
+
28
+ /* Any data specific to this type that the REPR wants to keep. */
29
+ void * REPR_data ;
27
30
28
31
/* The meta-object. */
29
32
PMC * HOW ;
@@ -67,10 +70,8 @@ typedef struct {
67
70
* of Parrot v-table functions. */
68
71
PMC * * parrot_vtable_mapping ;
69
72
70
- /**
71
- * Parrot-specific set of v-table to object method mappings */
73
+ /* Parrot-specific set of v-table to object method mappings. */
72
74
ParrotVtableHandlerSlot * parrot_vtable_handler_mapping ;
73
-
74
75
} STable ;
75
76
76
77
/* A representation is what controls the layout of an object and storage of
You can’t perform that action at this time.
0 commit comments