LebaneseMadpper

- Removed old mapper
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-07 12:27:58 +02:00
parent 048e0fa9ea
commit ddf3d5e9e8
1 changed files with 0 additions and 34 deletions

View File

@ -1,34 +0,0 @@
module tlang.compiler.codegen.mapper.lebanese;
import tlang.compiler.codegen.mapper.core : SymbolMapper;
import tlang.compiler.typecheck.core;
import tlang.compiler.symbols.data;
import std.string : replace;
public final class LebaneseMapper : SymbolMapper
{
this(TypeChecker tc)
{
super(tc);
}
/**
* Maps given Entity's name to a version whereby all the
* `.`'s are placed by underscores preceded by a `t_`
*
* Params:
* entityIn = the Entity to map
* Returns: A string of the mapped symbol
*/
public override string symbolLookup(Entity entityIn)
{
// Generate the absolute full path of the Entity
string absoluteFullPath = tc.getResolver().generateNameBest(entityIn);
// Generate the name as `_<underscored>`
string symbolName = replace(absoluteFullPath, ".", "_");
symbolName="t_"~symbolName;
return symbolName;
}
}