@@ -119,7 +119,7 @@ Return the LexInfo PMC, if any or a Null PMC.
119
119
info = PARROT_PROXY(info)->target;
120
120
proxied = 1;
121
121
}
122
- if (info->vtable->base_type == pmc_class_NQPLexInfo ) {
122
+ if (info->vtable->base_type == dynpmc_class_NQPLexInfo ) {
123
123
PMC *name_map;
124
124
GETATTR_NQPLexInfo_name_to_register_map(INTERP, info, name_map);
125
125
hash = (Hash *)VTABLE_get_pointer(INTERP, name_map);
@@ -130,7 +130,7 @@ Return the LexInfo PMC, if any or a Null PMC.
130
130
SET_ATTR_lexinfo_hash(INTERP, SELF, hash);
131
131
}
132
132
133
- if (!proxied && info->vtable->base_type == pmc_class_NQPLexInfo ) {
133
+ if (!proxied && info->vtable->base_type == dynpmc_class_NQPLexInfo ) {
134
134
PMC *static_slots_cache;
135
135
GETATTR_NQPLexInfo_static_slots_cache(INTERP, info, static_slots_cache);
136
136
if (!PMC_IS_NULL(static_slots_cache)) {
@@ -168,7 +168,7 @@ Return the LexInfo PMC, if any or a Null PMC.
168
168
if (info->vtable->base_type == enum_class_Proxy) {
169
169
info = PARROT_PROXY(info)->target;
170
170
}
171
- if (info->vtable->base_type == pmc_class_NQPLexInfo ) {
171
+ if (info->vtable->base_type == dynpmc_class_NQPLexInfo ) {
172
172
GETATTR_NQPLexInfo_name_to_register_map(INTERP, info, name_map);
173
173
hash = (const Hash *)VTABLE_get_pointer(INTERP, name_map);
174
174
}
0 commit comments