Can't be done. You can turn off name mangling completely by passing
'-style PRETTY' to the compiler, but even then, you can't know for
sure that the signature of the method won't change because the
compiler might devirtualize it, or optimize it in some other way.
Can you explain what you're trying to accomplish with eval? Maybe
there's another way to do it.
Ian
--
Tired of pop-ups, security holes, and spyware?
Try Firefox: http://www.getfirefox.com
Here is a reference to another post with more detailed explanation.
http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/7bb92
2e7a6644b24
Meanwhile I observed that if the variables in a JSNI function do not change
the mangling does not change either.
Can I assume this as a stable behaviour that will not change in the future?
(The problem was solved with code based on this exact assumption)