Hi,
I’m currently working on performance optimizations using the profilers, but I'm seeing some very inconsistent results. In several cases, extremely simple functions appear to take disproportionately long to execute according to the profiler.
One example that strongly suggests a potential issue with the profiler is the following:
Both of these functions are nearly identical:
public function getLabelColor() as ColorType? { return _labelColor; }
public function getValueColor() as ColorType? { return _valueColor; }
Despite this, the reported execution times differ significantly.
Has anyone encountered similar behavior or have an explanation for these numbers - aside from a profiler bug?