-
Notifications
You must be signed in to change notification settings - Fork 9
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
Private members overwriting each other (prototype version) #10
Comments
Member names for non-shared members now have "$TypeName" appended to them in the JS code. But this solution probably needs to be revised later because it likely doesn't work if the derived class has the same name as the base class, only in a different package. |
Yes, great, that's the right solution. Thanks. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the "prototype" version, the following program prints
2
although it should print1
:That's because both members
i
get mapped to a variablethis.i
of the same JS object.The text was updated successfully, but these errors were encountered: