[nullsafe] Respect RecentlyNonNull annotation

Summary:
See comment in the code.
Similarly to what we are already doing with RecentlyNullable, we should
treat this annotation exactly like NonNull.

Reviewed By: artempyanykh

Differential Revision: D20219284

fbshipit-source-id: 01f1127a6
master
Mitya Lyubarskiy 5 years ago committed by Facebook Github Bot
parent 54c35bc5c6
commit db821846d7

@ -97,6 +97,8 @@ let suppress_lint = "SuppressLint"
let suppress_view_nullability = "SuppressViewNullability" let suppress_view_nullability = "SuppressViewNullability"
let recently_nonnull = "RecentlyNonNull"
let recently_nullable = "RecentlyNullable" let recently_nullable = "RecentlyNullable"
let thread_confined = "ThreadConfined" let thread_confined = "ThreadConfined"
@ -179,18 +181,31 @@ let ia_is_not_thread_safe ia = ia_ends_with ia not_thread_safe
let ia_is_propagates_nullable ia = ia_ends_with ia propagates_nullable let ia_is_propagates_nullable ia = ia_ends_with ia propagates_nullable
let ia_is_nullable ia = let ia_is_nullable ia =
ia_ends_with ia nullable List.exists ~f:(ia_ends_with ia)
(* @RecentlyNullable is a special annotation that was added to solve backward compatibility issues [ nullable
for Android SDK migration. ; propagates_nullable (* @PropagatesNullable is implicitly nullable *)
See https://android-developers.googleblog.com/2018/08/android-pie-sdk-is-now-more-kotlin.html for details. ; recently_nullable
From nullsafe point of view, such annotations should be treated exactly as normal @Nullable annotation is treated. (* @RecentlyNullable is a special annotation that was added to solve backward compatibility issues
(Actually, IDEs might even show it as @Nullable) for Android SDK migration.
*) See https://android-developers.googleblog.com/2018/08/android-pie-sdk-is-now-more-kotlin.html for details.
|| ia_ends_with ia recently_nullable From nullsafe point of view, such annotations should be treated exactly as normal @Nullable annotation.
|| ia_is_propagates_nullable ia (Actually, it might even be shown as @Nullable in IDE/source code)
*) ]
let ia_is_nonnull ia = List.exists ~f:(ia_ends_with ia) [nonnull; notnull; camel_nonnull]
let ia_is_nonnull ia =
List.exists ~f:(ia_ends_with ia)
[ nonnull
; notnull
; camel_nonnull
; recently_nonnull
(* @RecentlyNonNull is a special annotation that was added to solve backward compatibility issues
for Android SDK migration.
See https://android-developers.googleblog.com/2018/08/android-pie-sdk-is-now-more-kotlin.html for details.
From nullsafe point of view, such annotations should be treated exactly as normal @NonNull annotation.
(Actually, it might even be shown as @NonNull in IDE/source code)
*) ]
let ia_is_nullsafe_strict ia = ia_ends_with ia nullsafe_strict let ia_is_nullsafe_strict ia = ia_ends_with ia nullsafe_strict

Loading…
Cancel
Save