- Prefix generated names with `t`
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-12 16:56:23 +02:00
parent ee8d73e23b
commit ca92e6f7bf
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ public final class SymbolMapper
// Generate the name as `_<hexOfAbsPath>`
string symbolName = toHexString!(LetterCase.lower)(md5Of(entityNameAbsolute));
symbolName="_"~symbolName;
symbolName="t_"~symbolName;
return symbolName;
}