Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法

一、问题1

Frame skipped from debugging during step-in. Note: may have been skipped because of justMyCode option (default == true). Try setting justMyCode: false in the debug configuration (e.g., launch.json

就是说我们在调试过程中点击单步进入时并没有跳到别的库(该行代码调用的方法所在的包)中,而是直接跳到我们写的代码的下一行了。原因就是launch.json文件中有一项justMyCode 默认为true,即只在我们写的代码中调试,所以我们把它改为false即可。

二、问题2

但是,可能有人没有launch.json这个文件,此时有两种方法解决:

  1. 点击快捷创建按钮Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第1张图片
  2. 自己手动添加配置
    Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第2张图片
    Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第3张图片
    此时,就会出现launch.json文件,然后就可以修改justMyCode了
    Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第4张图片

注意:有时候可能要重启才能生效

三、问题3

当然,还有人重启了也没用,比如我就是,所以这时要再加一些设置:
Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第5张图片
这个purpose的作用就是:告诉扩展在测试调试或使用debug-in-terminal命令时使用此配置。
这时,我就可以看到别的库中的代码了:

Frame skipped from debugging during step-in. VSCode调试无法定位其它库中代码的解决办法_第6张图片

你可能感兴趣的:(vscode,ide,编辑器)