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
UnknownJoe796 edited this page Sep 6, 2022
·
2 revisions
We track Kotlin constructs that we know don't translate yet here.
Early Returns/Breaks/Exceptions inside of expressions
funcannotTranslate(value:Int? = null) {
// Can't translate this early return!
otherFunction(value ?:return)
}
funok(value:Int? = null) {
// This has a special case howeverval valueNotNull = value ?:return
}