-
Notifications
You must be signed in to change notification settings - Fork 571
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perl debugger: Argument "package SQL::Translator;\n" isn't numeric in numeric ne (!=) at #23151
Comments
Hm... I never seen this error messages. Probably this is due perl version 5.41.2. This what happens when I try to display evaled code (Please notice, that not all lines are broken):
It looks like something is broken in the latest perl. I'll try to do the same with earlier versions of perl. |
If I access that internal array the second time then it works as expected.
|
From what I can tell this isn't a new issue:
From what I can tell S_save_lines() in pp_ctl.c has never set the IV part of the saved line. The fix is easy, writing a test is a bit harder. |
@tonycoz is this a problem in perl or in the CPAN module (or some combination thereof)? |
It's a problem with perl. |
Should I attempt to bisect it? |
You could try. I suspect it is a very old bug. |
perldebguts documents that the lines stored in @{"_<$filename"} arrays have a numeric value in addition to the text of the source, ensure that is true for evals. Non-zero IV values indicate the lines are breakable (they represent the address of the COP for that line) Fixes Perl#23151
perldebguts documents that the lines stored in @{"_<$filename"} arrays have a numeric value in addition to the text of the source, ensure that is true for evals. Non-zero IV values indicate the lines are breakable (they represent the address of the COP for that line) Fixes Perl#23151
Description
I am checking breakpoints in my debugger like this:
And I god this error message during debugging SQL::Translator:
It looks like values are not always magical in numeric context.
Steps to Reproduce
Too complex =(
Expected behavior
As documented the values at the array should be magical
Details
In my debugger I am checking the line is breakable or not via
${ $::{"_<$file"} }[ $line ] != 0;
If yes I print 'x', if not I do not print 'x'. Here you can see that lines 40-43, 45-50 are not magical for some reason:Probably this is due internals of
Sub/Quote.pm:3
.Another strange case with Sub/Quote
TL;DR; This does not belongs directly the case reported at this issue. But it could be interesting to know it because perl internal variables behaves strange for
Sub::Quote
module.File '(eval 712)[local/lib/perl5/Sub/Quote.pm:3]' is not compiled yet
. It is seldom, but if I got it, it is 100% reproducible.I do not expect that second error message when I step over the line, because it happens only in the certain cases. And if I do not trigger that case I can
step over
that line of code at debugger.How this code looks like:
So here above the error
is not compiled yet
happens only if I runA::FormData::process { Email => {} }
. If I do not run that code, then everything works fine.A::FormData::process
do interaction with many tables in database viaDBIx::Class
. So it is not clear what happens there inside. Probably there occurs second call toSub/Quote.pm
which makes conflict later.Perl configuration
The text was updated successfully, but these errors were encountered: