Now MappingChecker push __map call at the beginning of constructor.
That could be a problem, when _injector is instancied in super(), like in hex.module.Module class.
public function new( serviceMapping : MappingDefinition, viewMapping : MappingDefinition )
{
super();
var todomvc_module_TodoModule = function(serviceMapping,viewMapping) {
var __injectInto__ = this.__map([serviceMapping]);
__injectInto__ = this.__map([viewMapping],__injectInto__);
this.__injectInto(__injectInto__);
hex_module_Module.call(this);
Now
MappingChecker
push__map
call at the beginning of constructor. That could be a problem, when_injector
is instancied in super(), like in hex.module.Module class.