You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kotlin 1.5 brings a breaking change with the Duration class, and this affects the generation of mangled names for all methods using Duration as argument (for instance, the coroutines' delay(Duration) method).
Since awaitNodeBySelector uses Duration as argument, it is not correct to just @OptIn and we should instead mark the API as experimental too.
We should also provide a stable alternative so that people don't have trouble migrating (see #82)
The text was updated successfully, but these errors were encountered:
joffrey-bion
changed the title
Mark awaitNodeBySelector() as @ExperimentalTime to warn before Kotlin 1.5 migration
Mark awaitNodeBySelector() as @ExperimentalTime
May 11, 2021
Kotlin 1.5 brings a breaking change with the
Duration
class, and this affects the generation of mangled names for all methods usingDuration
as argument (for instance, the coroutines'delay(Duration)
method).Since
awaitNodeBySelector
usesDuration
as argument, it is not correct to just@OptIn
and we should instead mark the API as experimental too.We should also provide a stable alternative so that people don't have trouble migrating (see #82)
The text was updated successfully, but these errors were encountered: