Stevan Little
Stevan Little
This is a small commit to add directives to variable definitions. This is something which is supported in the JS reference implementation and has been added into the spec working...
Two suggestions have been floated, first being a query param (this might present issues if people have strict param validation though) or a custom X-Plack-Debugger-Disable header of some kind (also...
The transformation is usually fairly simple, but a quick doc to go over it in more detail would likely be helpful
1. The `Plack.Debugger` javascript gets loaded 2. The `Plack.Debugger` hooks into the jQuery global AJAX handlers which send events (`_:ajax-send`, `_:ajax-complete`), however the consumer of these events is not handling...
The panel data is actually already stored in JSON in the browser process, if you do this in the console you will find it. > $.grep(plack_debugger.resource._request.data.results, function (x) { return...
The panels are rendered immediately upon fetching of data, which is fine if you actually look at the panels, but is a waste if you never open them. The ideal...
Currently the ESC is being used to toggle the display of the debugger, which is nice, except when other things have already hooked into the ESC key. Need to investigate...
https://rt.cpan.org/Public/Bug/Display.html?id=123725
I have no idea what `$Foo::` is used for, I know that `%Foo::` provides access to the stash but `$Foo::` seems to just return `undef` without error. ``` perl -e...
(From https://github.com/stevan/p5-MOP/pull/14 by @wolfsage) You can specify a non-sub for @HAS attributes: ``` @HAS = ( x => {} ), ``` This will crash at runtime with a not-a-code-reference. Would...