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
Describe the bug Currently, the string() function doesn't work for list or context values. Instead, it returns null.
string()
null
To Reproduce Steps to reproduce the behavior:
string([1,2,3])
Expected behavior The string() function returns the string representation of list and context values. (see related DMN TCK case).
string([1, 2, 3]) // "[1, 2, 3]" string({x: 1}) // "{x: 1}"
Environment
The text was updated successfully, but these errors were encountered:
Related OMG issue:
Sorry, something went wrong.
The issue was fixed by #717 in version 1.17.0 as a side effect. 🚀
1.17.0
We need to add a few test cases to verify the behavior of the string() function before closing the issue.
saig0
Successfully merging a pull request may close this issue.
Describe the bug
Currently, the
string()
function doesn't work for list or context values. Instead, it returnsnull
.To Reproduce
Steps to reproduce the behavior:
string([1,2,3])
null
Expected behavior
The
string()
function returns the string representation of list and context values. (see related DMN TCK case).Environment
The text was updated successfully, but these errors were encountered: