-
-
Notifications
You must be signed in to change notification settings - Fork 213
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
feat: allow toggling namespacing independently of complete
#3497
base: master
Are you sure you want to change the base?
Conversation
csys = complete(sys) | ||
ap4 = csys.hej.plant_input | ||
@test nameof(ap4) == Symbol(join(["hej", "plant_input"], NAMESPACE_SEPARATOR)) | ||
nsys = toggle_namespacing(sys, false) | ||
ap5 = nsys.hej.plant_input |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does complete
no longer delete analysis points?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
complete
deletes analysis points in the sense that you cannot perform analysis point transformations on a completed system. However, you can still refer to analysis points from a completed system.
So if we have |
*disable, but yes |
|
My opinion here is not very strong, but this function does not really toggle any namespace, it toggles the action of appending a namespace in a future call to |
8357b8f
to
2f6593d
Compare
2f6593d
to
be61561
Compare
Failures are weird, it passes locally. |
Okay hmm updating reproduces this on master too |
CC @TorkelE @isaacsas @SebastianM-C @baggepinnen