escapedName.escapedName

Undocumented in source.
template escapedName(T)
enum escapedName = baseName(location[0]).chain(fullyQualifiedName!T).map!(ch => canFind([cast(dchar)'.', ' ', '!', '(', ')'], ch) ? '_' : ch).chain(location[1].to!string).to!string;

Meta