florian-pe

Results 18 comments of florian-pe

@coke Yes, the stackoverflow question is about Perl. But what's your point ? My raku example clearly shows that what the documentation is wrong. The stackoverflow question is about the...

And I should add the problem is not that the documentation is wrong abour a random issue. The problem is that it is wrong about the evaluation model of Raku....

@Altai-man You're absolutely right, someone who knows the internals and/or the specifications should weight in to explain to us the rationale behind this. I'm guessing that the raku implementation should...

@Ahanaf-Ether Of course I'm exporting PERL5LIB in my .bashrc and it's works fine in the terminal and in my perl scripts and modules. But it doesn't work when I write...

Hi @jkeenan, I would report the bug at the link you posted but I cannot find where to go to open a new ticket, I've never reported yet a bug...

I forgot to mention that the bug occurs specifically in the presense of `(*FAIL)` (or `(?!)`) after the embeded code block.

The backtraces in GDB using a debug build. case of: ``` $re = qr{ (?{ match($line, $re) if !$tried++ }) (*FAIL) }x; # Segmentation fault match($line, $re); ``` ``` line...

@tonycoz The infamous use after free, in this case because of a free occuring earlier than it should be. I've made a bit of progress on the same case: `$re...

Can someone put the type-regex label please? I can't do it myself. I did additional research back in December but didn't finished writing the post, nor the research. The previous...

Yes, sorry this paragraph it's a bit dodgy, I was trying to explain and show that the perldoc description is a bit imprecise but on second thought, the description seems...