Camelcade / Devel-Camelcadedb

Perl module for debugging with Perl5 plugin for IntelliJ
Other
23 stars 9 forks source link

Breakpoints not working in Intellij #42

Open ErikTheRed47 opened 5 years ago

ErikTheRed47 commented 5 years ago

I am using Camelcadedb V2019.1 under Intellij 2019.1.1 Strawberry version 5.18.4 windows 10 pro version 1809 OS Build 17763.437 but even the 7 line script below doesn’t stop at a breakpoint set on line 7.

#!/usr/bin/perl
use strict;
use warnings FATAL => 'all';

print "First Line\n";
print "Second Line\n";
print "After Break\n";

Another script that has subroutines included in the same file and included modules does not stop either in the main part or the subroutine in the same file but will stop at a break set in the included Perl module

I have used the debugger successfully under previous software versions, any assistance will be greatly appreciated.

Erik B.T.W. this is my first post so please feel free to point out any breaches of established protocol.