scala/scala3

Consider nullable annotations in explicit nulls

Open

#21 629 ouverte le 23 sept. 2024

Voir sur GitHub
 (9 commentaires) (3 réactions) (1 assigné)Scala (1 159 forks)batch import
area:nullabilitycompat:javagood first issueitype:enhancementitype:question

Métriques du dépôt

Stars
 (6 247 stars)
Métriques de merge PR
 (Merge moyen 18j 14h) (133 PRs mergées en 30 j)

Description

The @NotNull and @NonNullable type annotations are currently used by explicit nulls to not nullify (or add flexible type to) a reference type from Java signatures.

In addition to these annotations, I suggest we also consider the @Nullable annotation. It indicates a value can indeed be null. In this case, we will always nullify the type (adding | Null), instead of adding a flexible type.

// in Java
@Nullable String f(String s)

// in Scala with explicit nulls currently
def f(s: (String)?): (String)?

// in Scala with explicit nulls considering the annotation
def f(s: (String)?): String | Null

A list of @Nullable annotations we may want to consider:

javax.annotation.Nullable
org.jetbrains.annotations.Nullable
org.jspecify.annotations.Nullable
...

Guide contributeur