-
Notifications
You must be signed in to change notification settings - Fork 1
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
The for loop wrongly behaves when there are nested arrays in the iteration contexts #1350
Comments
Most likely related to #774 |
//cc @bncriju |
@yesamer I'm trying also another example |
@yesamer @baldimir
and
it seems that this expression is wrong but this should work
Unfortunately, it seems that our implementation is expecting only statically defined lists. I'm digging further... |
The following FEEL expression:
for x in [ [1,2], [3,4] ], y in x return y
should return
[1, 2, 3, 4]
but it currently returns
[1, 2, 1, 2]
The text was updated successfully, but these errors were encountered: