Variable names are not a thing at runtime. They're entirely a compile time thing, and the generated code does not know or care that there even were names for variables in the source code.
When the program is compiled with debug info, one could parse that on the fly and then you would have variable names available at runtime.... ;-)
cheers, Johan