- Removed `symbolRename(string)` method
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-12 16:39:57 +02:00
parent 23b3e67f02
commit 997b378cc9
1 changed files with 1 additions and 14 deletions

View File

@ -33,20 +33,7 @@ public bool isCharacterNumber(char character)
}
/**
* Takes in a symbol name (string) and replaces
* all the "."s with an underscore as to make
* the names ready for ceoe emitting
*
* Params:
* symbolIn = The symbol name to transform
* Returns: The transformed symbol name
*/
public string symbolRename(string symbolIn)
{
string symbolOut = replace(symbolIn, ".", "_");
return symbolOut;
}
template Stack(T)