I've done a little more experimenting with this problem and have narrowed it down a bit. It seems like there might be an over-optimization, as the following code works properly:
void myfunc() { function f = Cocoa.NSOpenPanel.openPanel; object o = f(); }
whereas this code causes the openPanel function to be called during compile time, rather than when the function myfunc is actually called:
void myfunc() { object o = Cocoa.NSOpenPanel.openPanel(); }
Similarly, the backtrace at the time of the incorrect call to openPanel() looks something like this (non-relevant frames removed):
[...]
You probably want to declare the function as having OPT_SIDE_EFFECT.
I'm glad to try to work on solving this problem, but it's a little bit further down in the core than I'm accustomed, so I'll gladly take advice on this. So, anyone have any? :)
Bill