Re: [IronPython] Disabling optimized methods

2011-02-01 Thread Dino Viehland
. From: users-boun...@lists.ironpython.com [mailto:users-boun...@lists.ironpython.com] On Behalf Of Daniel Jennings Sent: Tuesday, February 01, 2011 11:55 AM To: Discussion of IronPython Subject: [IronPython] Disabling optimized methods I was reading an old post by Dino here: http://www.mail

Re: [IronPython] Disabling optimized methods

2011-02-01 Thread Daniel Jennings
...@lists.ironpython.com] On Behalf Of Dino Viehland Sent: Tuesday, February 01, 2011 12:50 PM To: Discussion of IronPython Subject: Re: [IronPython] Disabling optimized methods You can use -X:Debug now to specifiy this at the command line. If you want to do it while you're hosting you can set the DebugMode option

Re: [IronPython] Disabling optimized methods

2011-02-01 Thread Dino Viehland
: [IronPython] Disabling optimized methods Alright, we're using DebugMode = true already (when the application starts with the debugger attached) so we must be seeing something else that is causing us to get the 'function has been optimized' message. Thanks From: users-boun

Re: [IronPython] Disabling optimized methods

2011-02-01 Thread Daniel Jennings
: Tuesday, February 01, 2011 12:51 PM To: Discussion of IronPython Subject: Re: [IronPython] Disabling optimized methods Alright, we’re using DebugMode = true already (when the application starts with the debugger attached) so we must be seeing something else that is causing us to get the ‘function

Re: [IronPython] Disabling optimized methods

2011-02-01 Thread Daniel Jennings
Of Daniel Jennings Sent: Tuesday, February 01, 2011 12:51 PM To: Discussion of IronPython Subject: Re: [IronPython] Disabling optimized methods Alright, we're using DebugMode = true already (when the application starts with the debugger attached) so we must be seeing something else that is causing us

Re: [IronPython] Disabling optimized methods

2007-11-19 Thread Dino Viehland
be freed. But it will make the typical CLR-style debugging possible. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Hardy Sent: Saturday, November 17, 2007 3:05 PM To: Discussion of IronPython Subject: [IronPython] Disabling optimized methods Hi

[IronPython] Disabling optimized methods

2007-11-17 Thread Jeff Hardy
Hi, Is there a way to disable method optimizations? I tried setting ScriptDomainManager.Options.DebugCodeGeneration = true, but the debugger still shows Cannot evaluate expression because the code of the current method is optimized. for a large number of methods. I set the option before creating