-
Notifications
You must be signed in to change notification settings - Fork 5.4k
[metadata] Move MonoClass:inlinearray_value out of MonoClass #103913
Copy link
Copy link
Closed
Labels
area-VM-meta-monoenhancementProduct code improvement that does NOT require public API changes/additionsProduct code improvement that does NOT require public API changes/additionsgood first issueIssue should be easy to implement, good for first-time contributorsIssue should be easy to implement, good for first-time contributorshelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorsin-prThere is an active PR which will close this issue when it is mergedThere is an active PR which will close this issue when it is merged
Milestone
Metadata
Metadata
Assignees
Labels
area-VM-meta-monoenhancementProduct code improvement that does NOT require public API changes/additionsProduct code improvement that does NOT require public API changes/additionsgood first issueIssue should be easy to implement, good for first-time contributorsIssue should be easy to implement, good for first-time contributorshelp wanted[up-for-grabs] Good issue for external contributors[up-for-grabs] Good issue for external contributorsin-prThere is an active PR which will close this issue when it is mergedThere is an active PR which will close this issue when it is merged
Type
Fields
Give feedbackNo fields configured for issues without a type.
inline arrays are quite infrequent. We have the
is_inlinearraybit on MonoClass for fast checks, butinlinearray_valuedoesn't really need to be on every single MonoClass. We should move it toMonoClass:infrequent_data, or at least toMonoClassDef(since generic instances can't change a custom attribute value).