We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Steps to reproduce
// Class1.java public class Class1 { public Object field1; }
// test.js var c1 = new Class1(); c1.field1 = undefined;
Maybe we can provide automatic conversion from undefined to null or throw an exception.
undefined
null
The text was updated successfully, but these errors were encountered:
fix issue #306
b682473
we couldn't set undefined to a reference type field of a native object now set with undefined and with null have the same behavior (return null)
Merge pull request #534 from NativeScript/plamen5kov/fix_issue#306
120be02
Plamen5kov
No branches or pull requests
Steps to reproduce
Maybe we can provide automatic conversion from
undefined
tonull
or throw an exception.The text was updated successfully, but these errors were encountered: