-
Notifications
You must be signed in to change notification settings - Fork 8
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
Proposed change in behavior for @JsProperty
/@JsType
with non-native Record types
#6
Comments
Thanks for the write up. I think it generally makes sense though not sure what to do with native types. My quick take is JsType should mean the same thing everywhere and my there is a different annotation if we want to significantly change meaning (like JsFunction, JsEnum etc..). |
After some reflection, I think that I think I'd go further at this time and suggest that a closure
Any read I have of it, there is no good analog in closure for an immutable record/struct type - even if you were to find a type already written as /** @record */
function Book() {};
/** @const {string} */
Book.prototype.title;
/** @const {number} */
Book.prototype.pageCount;
/** @const {string[]} */
Book.prototype.authors; you still have the "problem"/mismatch that the array in Given that, is there any way to permit native Java record types, without also applying runtime changes to the objects like calling The good news at least is that I don't think this needs to affect non-native records:
|
Does not attempt to address native support - like enums, if this is to be supported, it will likely require its own annotation and semantics. Fixes google#6
https://openjdk.java.net/jeps/395 added Records to Java 16 as a finalized feature. In the course of implementing this for GWT 2, we've observed that it might make sense to slightly modify
@JsProperty
for non-native types in a way that doesn't automatically produce errors. It could also make sense to change how@JsType
behaves on non-native records to automatically expose record components as properties rather than methods.From the JEP:
This means that if
@JsProperty
is annotated on a record component, it will propagate to both the accessor method and the private final field. That is,would effectively become
This seems problematic for two reasons:
Possible workarounds:
@JsProperty int x
to@JsProperty("x") int x
would technically resolve the naming issue, but with unnecessary verbosity, and still not correct the first problemThis is usable, but arguably what the user clearly meant to begin with.
I propose instead that
@JsProperty
on record component accessors not require that the accessor be named as a Bean getter, but reflecting the immutable nature of the record, only be named for the component.@JsProperty
on record instance fields are ignored if they are also present on the matching accessor method. This would allow a collision in naming, where the accessor should always "win" when exposing to JS.Next, decorating a record with
@JsType
. This is unlikely to reflect the developer's intent, as by default the constructor and accessor methods would be treated as if decorated with their default jsinterop annotation. Instead, I suggest that the methods should be exported as properties. This makes the above example even simpler, offering a simple immutable record/struct to JS:As the constructor and accessors are implicit (but can be explicit, and in the case of the constructor, compact), if declared they could have their own jsinterop annotations present (
@JsIgnore
, for example), and if other methods are added, they would follow the standard rules that JsType follows - if public, they are annotated as expected. As records cannot have non-static fields added explicitly, this effectively means only constructors and methods will be able to be exposed in this way.One observation: the compact constructor, in conjunction with these rules could simplify records with many components. Instead of the initial example where each component was annotated with
@JsProperty
, we could instead seeIt may also make sense to offer new behavior for native records, so a native Java record means something - perhaps a closure struct could make sense here? This would mean that invoking a native Java record's constructor would serve to create an object with the expected components, simple syntactic sugar to replace the interfaces with
create()
factory method that jsinterop-generator currently produces. This is a little more opinionated though (dealing with immutability, etc), so could be taken up separately.The text was updated successfully, but these errors were encountered: