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
The naming convention tells: Key names have to start with a letter, digit or underscore.
But what happens if the key name consists of only one single character?
The following combinations work properly, except the one that is commented out:
"A" : 1, "check01" : ${A}, // "0" : 2, // "check02" : ${0}, "_" : 3, "check03" : ${_}
The combination
"0" : 2, "check02" : ${0}
causes:
'The parameter '${0}' is not available!'!
But in my opinion this should be allowed.
The text was updated successfully, but these errors were encountered:
starts with a digit, so should be allowed.
Sorry, something went wrong.
The fix was pushed to stabi branch Ready for ROBFW-AIO 0.13.2
Retest successful. Issue can be closed.
part of 0.13.2
namsonx
No branches or pull requests
The naming convention tells: Key names have to start with a letter, digit or underscore.
But what happens if the key name consists of only one single character?
The following combinations work properly, except the one that is commented out:
The combination
causes:
'The parameter '${0}' is not available!'!
But in my opinion this should be allowed.
The text was updated successfully, but these errors were encountered: