context.error(getLocation(), "Cannot create implicit constructor call in class '" + getName() +
"' since superclass '" + getBase().getReference() + "' does not have constructor with empty parameter list");
} else {
BlockStatement block = _constructor.getBlockStatement();
block.insert(new EvalStatement(block, getLocation(),
new Expression(new ConstructorInvokeNode(this,
new ExpressionList(0)), getLocation())));
}
}
}