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
Annotation processor errors in Realm Java made it possible to link to the syntax element that was causing the error. This was super helpful in terms of tracking down where the problem is.
I'm not sure if something similar is possible with the Kotlin Compiler, but just outputting something like:
Is not particularly helpful... As a minimum, we should identify the file, method, and ideally line that is causing the issue or expression so you can easily find it.
The text was updated successfully, but these errors were encountered:
We should also provide sane error descriptions. Defining a property as val will just yield
Caused by: java.lang.ClassCastException: io.realm.entities.schema.SchemaVariations$Companion$$realm$fields$20 cannot be cast to kotlin.reflect.KMutableProperty1
Annotation processor errors in Realm Java made it possible to link to the syntax element that was causing the error. This was super helpful in terms of tracking down where the problem is.
I'm not sure if something similar is possible with the Kotlin Compiler, but just outputting something like:
Is not particularly helpful... As a minimum, we should identify the file, method, and ideally line that is causing the issue or expression so you can easily find it.
The text was updated successfully, but these errors were encountered: