You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seems like this is not only related to arrays.
I.e. for this config:
c: {
q: {
a: 1
}
}
c: {
m: ${c.q} {a: 2}
}
It is also rewriting c.q.a to 2, but should not.
Seems like whenever there is a concatenation with substitution, we have to make full copy of substituted value to make it change safely.
Parsing this using akkadotnet
Results in:
(c.q.a should has changed)
EXPECTED:
c.q.a should be unchanged
The text was updated successfully, but these errors were encountered: