We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Input:
x={ q : 10 } y=5 a=1 a.q.r.s=${b} a=${y} a=${x} a={ c : 3 } b=${x} b=${y} // nesting ConfigDelayed inside another one c=${x} c={ d : 600, e : ${a}, f : ${b} }
The parsed value should be something like:
{ "a" : { "c" : 3, "q" : 10 }, "b" : 5, "c" : { "d" : 600, "e" : { "c" : 3, "q" : 10 }, "f" : 5, "q" : 10 }, "x" : { "q" : 10 }, "y" : 5 }
But the c.e.q does not existed in parsed result.
c.e.q
The text was updated successfully, but these errors were encountered:
Working on a fix, thank you for reporting.
Sorry, something went wrong.
Fix for akkadotnet#89 and akkadotnet#92, Object fields containing obj…
d9bb066
…ects may not return the proper object value in certain circumstances.
Fix for #89 and #92, Object fields containing objects may not return …
ef70a15
…the proper object value in certain circumstances. (#93)
No branches or pull requests
Input:
The parsed value should be something like:
But the
c.e.q
does not existed in parsed result.The text was updated successfully, but these errors were encountered: