Hi,
Is it that I am missing something or what but I am unable to get into library code while debugging in the new IDE.
For example, in the parent script, we have a function which calls a library function:
//parent script
function parentFun( )
{
MyLib.addSomething( );
}
//---------------------------------------------
//library script
function addSomething( )
{
console.log("step1");
console.log("step2");
console.log("step3");
}
//library script code ends
Now, when debugging parentFun( ) I have added a breakpoint at:
MyLib.addSomething( )
It reaches to this point and from there I click on the Step-In button on the right panel in the new IDE and it simply executes the full function code, rather than getting to the 1st statement of this library function so I can see different variables and catch the issue.
Can anyone guide as to what I am missing.
Thanks.