Closed noti0na1 closed 5 years ago
@abeln Yes
The compilation tests passed, but I'm not very confident with my change. I will double check my code tomorrow.
@noti0na1 I added a couple of comments. Thanks!
@abeln If we nullify Seq[String] | String
, the result is Seq[String] | String | JavaNull
. Is this correct? I think the correct result should be Seq[String | JavaNull] | String | JavaNull
.
Also, I have a little concern about the call toJavaNullableUnion
, If we have a large union, the time complexity would be O(n^2)
.
@abeln Done
@noti0na1 Is this ready for review? Thanks!