-
Notifications
You must be signed in to change notification settings - Fork 168
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
NPE with Polymer 2, Flow and @Synchronize annotation #1668
Comments
My understanding is that there are some properties that are synced by default, like value and if we add an extra sync via annotation, we're getting some side effects that cause the NPE. If we leave the annotation on We need to fix this behaviour, since it's very confusing. |
It's always good to have the stacktrace available in the ticket if exception is mentioned. |
I don't see any NPE.
|
Alright, I have assertions enabled that's why I get assertion exception before NPE. |
I don't see any difference with Original problem here is on the client side. Property sync message ( |
The following class throws NPE on init:
Fails with NPE.
If we replace
new PaperInput("sssssss");
withnew PaperInput();
or remove any@Synchronize
annotation, everything works without NPE.The text was updated successfully, but these errors were encountered: