mHasMadeAChange = true;
AJCForest.getInstance().increment("Calls to " + targetSym.owner + "." + targetSym.name + " Inlined: ");
FunctionTemplateInstance instance;
if (template.isStatic) {
instance = template.instantiateWithTemps(enclosingMethod, that.args.toArray(new AJCExpressionTree[that.args.size()]));
} else {
AJCExpressionTree[] args = new AJCExpressionTree[that.args.size()+1];
if (that.meth instanceof AJCFieldAccess) {
// TODO: Urgh.
args[0] = (AJCExpressionTree) ((AJCFieldAccess) that.meth).selected;