I have a language with a very C++-like syntax. The lexer and parser are in place and produce the correct AST. For the largest part the backend is also done.
The basic system the compiler uses to create types is very simple: all types are considered built-in and all instances are global. So there's just a simple map which matches a types name to a method that creates a Variable which is basically a generic type like boost::any. Another map with the variable's name as key and the Variable as value serves as the global scope:
std::map< std::string, std::function< Variable() > typeList;
//register some types
typeList[ "X" ] = Variable::Create<X>;
typeList[ "Y" ] = CreateInstanceOfY;
....
When the compiler gets the AST node for an initialization like X myVar; it basically does
std::map< std::string, Variable > globalScope;
globalScope[ "myVar" ] = typeList[ "X" ]();
When myVar is used later on it can be accessed by simple type dispatching like
X& x = myVar.GetReference<X>();
Now I would like to extend this a bit and use simple templates. Suppose there is a type "array" which is implemented using a vector. I could register everything like
typeList[ "array<X>" ] = Variable::Create< std::vector< X > >;
but that is not quite managable as it would have to be repeated for all combinations. Ideally I'd need functionality allowing to write something like this:
typeList.CreateTemplateVariable( "array", "X" )
which would then create a Variable instance which internally holds an std::vector< X >. I tried hard but cannot figure out how to do this. Maybe I just started the wrong way with the simple type mapping and is that the reason I cannot get my head around it.
So the question is simple: is it possible to do this? And how?