-
Notifications
You must be signed in to change notification settings - Fork 36
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
Don't inline classes in constructor if possible #481
Don't inline classes in constructor if possible #481
Conversation
This approach of using We might have to change the parent environment of the constructor to the environment where
|
Qualifying calls by the namespace should only be necessary when referencing class from another package. Would avoiding unnecessary qualification resolve the issue? |
This is starting to feel related to #341 |
OOPWG notes: This should be fixed and merged before release. |
This PR changes a constructor default formal value from an inlined class call, to a call like
pkgname::classname()
, ifclass@package
is notNULL
.closes #477
With this PR: