PerformanceData[] ret = new PerformanceData[POSTPROCESS + 1];
try
{
for (int i = PREPROCESS; i <= POSTPROCESS; ++i)
{
ret[i] = new PerformanceData();
ret[i].invocationCount = this.compileTimes[i].invocationCount;
ret[i].totalTime = this.compileTimes[i].totalTime - other.compileTimes[i].totalTime;
}
}
catch (Exception e)