[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: A few Wild and Wooly Proposals, while we're here (was Re: Feature request: userdata slice)
- From: Sean Conner <sean@...>
- Date: Thu, 20 Aug 2015 22:37:19 -0400
It was thus said that the Great Daurnimator once stated:
> On 21 August 2015 at 12:18, Sean Conner <sean@conman.org> wrote:
> > 3) Allow the setting of a single breakpoint. It's always bothered me that
> > you have to set a hook and get notified *every single time* (function by
> > function, line by line, cycle by cycle) even if you just want to stop at a
> > single place. At least allow a breakpoint at the start of a function. That
> > way, the code runs at full speed until the breakpoint.
>
> Just swap the function out?
> local _oldfoo = foo; foo = function(...)
> debug.debug() -- use whatever you want instead.
> return _oldfoo(...)
> end
...
Um ...
...
Yeah.
-spc (Honestly, that thought never crossed my mind ... )
- References:
- Re: Feature request: userdata slice, Dirk Laurie
- Re: Feature request: userdata slice, 云风 Cloud Wu
- Re: Feature request: userdata slice, Dirk Laurie
- Re: Feature request: userdata slice, Dirk Laurie
- Re: Feature request: userdata slice, Tim Hill
- Re: Feature request: userdata slice, William Ahern
- Re: Feature request: userdata slice, Roberto Ierusalimschy
- Re: Feature request: userdata slice, William Ahern
- A few Wild and Wooly Proposals, while we're here (was Re: Feature request: userdata slice), Sean Conner
- Re: A few Wild and Wooly Proposals, while we're here (was Re: Feature request: userdata slice), Daurnimator