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

Account for typedef nullability #257

Merged
merged 3 commits into from
Jun 18, 2024
Merged

Commits on Jun 17, 2024

  1. Account for typedef nullability

    _desugarTypedef accepts a _RawType and returns its
    underlying type if it's a typedef. However, it doesn't
    account for whether the _RawType is nullable or not.
    In order to accurately desugar a use of a typedef, we
    should union the _RawType's nullability with the underlying
    type's nullability. For example, `SomeTypedef?` should
    always be nullable after being desugared.
    srujzs committed Jun 17, 2024
    Configuration menu
    Copy the full SHA
    e15481b View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Add changelog entry

    srujzs committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    8dbb3cc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0bb44bd View commit details
    Browse the repository at this point in the history