RATools icon indicating copy to clipboard operation
RATools copied to clipboard

[Feature Request] Dot operator for accessing dictionary values

Open suXinjke opened this issue 2 years ago • 0 comments

If one chooses to have plenty of data in dictionaries, the code gets noisy. If you were a javascript dev you'd 100% not tolerate having entirety of your code have bracket notation.

// instead of
if (dict["someValue24"])

// allow for
if (dict.someValue24)

// not allowed
if (dict.1)

// not allowed
if (dict.1val)

suXinjke avatar Oct 24 '22 06:10 suXinjke