in reply to Re^13: B::Xref buggy?
in thread B::Xref buggy?

> No, without change.

I've already proven that this is not happening now. And Dave already confirmed it.

Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

Replies are listed 'Best First'.
Re^15: B::Xref buggy?
by ikegami (Patriarch) on Nov 17, 2018 at 20:21 UTC

    No, you showed Concise giving the line number of the while loop, and Xref giving the line number of the my. Those are different ops. Concise doesn't even try to give the line number of the my because it's not stored anywhere. Xref gets it from the nearest preceding nextstate, which is the one from the last statement of the loop.

      I'm out.

      Cheers Rolf
      (addicted to the Perl Programming Language :)
      Wikisyntax for the Monastery FootballPerl is like chess, only without the dice