Alexandr Evstigneev

Results 269 issues of Alexandr Evstigneev

Not sure it's always possible, because of the dynamic stuff.

stubs

Initial idea was to support refcount and use weak references for internal caches. But for now it's just normal one. May hit at some point. We need to understand the...

bug

Because of references mess, we show `@_` and lexicals/globals differently. Reproduction example (put a breakpoint at `say 1;` ``` use strict; use warnings FATAL => 'all'; use v5.10; my $scalar...

bug

For some internal perl reasons, even when we set mode to start at first breakpint, we stop in other places, like `use something`. E.g. when running tests, we start in...

bug

Idea is from one of the telegram chats. And I stuck on such thing myself twice. Sometimes in the large project something changes value of variable or array/hash. And you...

Feature

This becomes real headache when debugging tests

bug

``` {map {$_->{key} => 1} @{$ar}} ``` not working, but ``` +{map {$_->{key} => 1} @{$ar}} ``` does

bug

Atm we are using perl stringified references. But seems GC may rearriage memory and references not working anymore.

enhancement
question

We could check this with Scalar::Util::isweak

enhancement

Currently we are using bruteforce breakpoints setting, that are super-reliable but providing too large overhead. Basically, we need to make event-driven flag for attempting to set a breakpoint.

enhancement