Replies: 1 comment
|
It's possible that this relates to our virtual method inlining optimization which is a major part of the performance work. All the methods that get remove can't be the source of the exception since we only eliminate methods that can't have side effects. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello, maybe it's due to the recent optimizations, or I've misunderstood something, but the stack traces I get on my iOS device (using 7.0.265) are incomplete (or incorrect), e.g. the code at the indicated line numbers does not contain calls to the next line in the stack trace). So, it looks like the trace is missing lines.
As an example in the trace below, the
ScreenMainconstructor line 135 does not create a newMyTree(but it does call a method X that calls method Y which will create a newMyTree). I would expect to see the calls to X and Y in the trace like it used to be.Similarly, the line 274 in the
MyTree2constructor does not callMyLog.LOG(but it probably happens somewhere down the call path, only here it is not straightforward to figure out where exactly).Is this an error and if not, is there a way to still get the full stack trace?
All reactions