this.ctorFunction = func;
else
{
// If we already have a ctor, must be multiply defined. Ignore it and generate problem
String name = this.className.getBaseName();
classScope.addProblem( new MultipleContructorDefinitionsProblem(func, name));
}
}
else
{
LexicalScope ls = funcDef.isStatic()? classStaticScope: classScope;