-
Notifications
You must be signed in to change notification settings - Fork 35
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
using renamed components in #defcomposite #698
Conversation
Codecov Report
@@ Coverage Diff @@
## master #698 +/- ##
==========================================
+ Coverage 79.16% 79.20% +0.03%
==========================================
Files 39 39
Lines 2851 2851
==========================================
+ Hits 2257 2258 +1
+ Misses 594 593 -1
Continue to review full report at Codecov.
|
I think this error will also need to be addressed not just for @defcomp A begin
p1 = Parameter()
p2 = Parameter()
v1 = Variable()
end
@defcomp B begin
v2 = Variable()
end
@defcomposite C begin
foo = Component(A)
bar = Component(B)
rename_p1 = Parameter(foo.p1)
connect(foo.p2, bar.v2)
rename_v1 = Variable(foo.v1)
end |
@ckingdon95 the macro yields the following with the
|
Note from conversation: This macro expand looks good, next step is to move the wip file to testing, perhaps test for keys like:
|
#686