Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Return flattened properties of complex types in correct order #33393

Merged
merged 1 commit into from
Mar 26, 2024

Commits on Mar 25, 2024

  1. Return flattened properties of complex types in correct order

    Fixes #33307
    
    Property indexes are created such that properties of derived types are at the end--it has to be this way so that the indexes for properties on the base type remain the same for all derived types. However, when getting the flattened properties, we were returning them in a different order, such that properties with indexes for inherited type were returned in the middle of the list. This change instead returns the properties in the same order as their indexes.
    ajcvickers committed Mar 25, 2024
    Configuration menu
    Copy the full SHA
    514f62f View commit details
    Browse the repository at this point in the history