Skip to content

[ 2374936 ] 'One character' key names #357

@HolQue

Description

@HolQue

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.

Metadata

Metadata

Assignees

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions