-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Description
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.