}
-
+
/*****************************************************************************/
/* Scope info */
/*****************************************************************************/
D->scope_type = S->Type;
D->scope_size = S->Size;
if (S->Parent.Info) {
- D->scope_parent = S->Parent.Info->Id;
+ D->parent_id = S->Parent.Info->Id;
} else {
- D->scope_parent = CC65_INV_ID;
+ D->parent_id = CC65_INV_ID;
}
if (S->Label.Info) {
D->symbol_id = S->Label.Info->Id;
const char* scope_name; /* Name of scope */
cc65_scope_type scope_type; /* Type of scope */
cc65_size scope_size; /* Size of scope, 0 if unknown */
- unsigned scope_parent; /* Id of parent scope */
+ unsigned parent_id; /* Id of parent scope */
unsigned symbol_id; /* Id of scope symbol if any */
unsigned module_id; /* Id of the module */
};