replaces all special characters with underscores and underscores with double underscores.
Slightly problematic, because if the user declares for example a variable test*test and another variable test&test both of these will be translated to test_test in the code, so it will throw a redeclaration error. I added an ErrorSuggestion for that...
355
replaces all special characters with underscores and underscores with double underscores. Slightly problematic, because if the user declares for example a variable
test*test
and another variabletest&test
both of these will be translated totest_test
in the code, so it will throw a redeclaration error. I added an ErrorSuggestion for that...