-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add @MetaSerializable annotation #1979
Conversation
* @see Serializer | ||
*/ | ||
@Target(AnnotationTarget.ANNOTATION_CLASS) | ||
//@Retention(AnnotationRetention.RUNTIME) // Runtime is the default retention, also see KT-41082 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does it affect JS IR as well? Is this feature implemented on JS legacy?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's supported on all IR backends. JS legacy not supported
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't the problem mentioned here specific only for JS legacy?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but this file is compiled for all backends, and JS legacy compiler will issue a lengthy warning
Co-authored-by: Vsevolod Tolstopyatov <qwwdfsad@gmail.com>
No description provided.