Is your feature request related to a problem? Please describe.
I want to be able to disable case insensitivity for variable names. This would allow us to have the variable banana and Banana as separate things.
Describe the solution you'd like
I'd like there to be a flag or setting that I can flip to enable case sensitive variable names. I don't have much preference for where or how, as long as it exists. I'd also be fine, for instance, if there was a callback defined to "normalize" variable names prior to comparison.
Describe alternatives you've considered
Since I couldn't find anything built-in, I was planning on just monkey-patching for now. I believe the relevant places are:
So I can just replace these existing functions dynamically with versions that don't have toLowerCase.
Is your feature request related to a problem? Please describe.
I want to be able to disable case insensitivity for variable names. This would allow us to have the variable
bananaandBananaas separate things.Describe the solution you'd like
I'd like there to be a flag or setting that I can flip to enable case sensitive variable names. I don't have much preference for where or how, as long as it exists. I'd also be fine, for instance, if there was a callback defined to "normalize" variable names prior to comparison.
Describe alternatives you've considered
Since I couldn't find anything built-in, I was planning on just monkey-patching for now. I believe the relevant places are:
So I can just replace these existing functions dynamically with versions that don't have
toLowerCase.