Well, perhaps not directly related to add_function_constant(). I've got some code that generates programs dynamically, and it uses add_function_constant() to add methods to the program. The first odd behavior is that these functions are callable without instantiating the object. That's actually a useful property for me, as I can emulate class methods, and access them at My.Class.somefunc(). The odd part is that if I have code that makes calls to these "class" methods, and I use low_cast_to_program() to get that code, the calls to My.Class.somefunc() get executed at compile time, but not when the code that uses them is called.
Example:
void somefunc() { object panel = Cocoa.NSOpenPanel.openPanel(); // this method is executed at compile time, and not when somefunc() is called.
panel->run(); // this seems to work anyhow, so panel must be a valid object. }
Can anyone explain this? I realize it's possible that I'm improperly using an unintended side effect, in which case I'd voice my support for class (Java-static) methods.
Bill