-
Notifications
You must be signed in to change notification settings - Fork 773
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
Output loops #1628
Output loops #1628
Conversation
There was a bug that allowed things like: var foo = {
a: [for thing in things: thing]
} While fixing I also rewrote this to simplify the implementation. (Switched to using the call stack instead of a separate stack among other things.) Refers to: src/Bicep.Core/Emit/ForSyntaxValidatorVisitor.cs:12 in 7fd642d. [](commit_id = 7fd642d, deletion_comment = False) |
|
||
output managementGroupIds array = [for i in range(0, length(managementGroups)): { | ||
name: yetAnotherSet[i].name | ||
displayName: yetAnotherSet[i].properties.displayName |
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.
[i] [](start = 28, length = 3)
Supporting direct references to collections will make this a lot less awkward. It'll come in a different PR, though.
Codecov Report
@@ Coverage Diff @@
## main #1628 +/- ##
=======================================
Coverage 95.15% 95.15%
=======================================
Files 363 363
Lines 20085 20098 +13
Branches 13 13
=======================================
+ Hits 19111 19125 +14
+ Misses 974 973 -1
Flags with carried forward coverage won't be shown. Click here to find out more.
|
For-expressions are now supported in output values. This fixes #1615.
Additional changes: