如果函数 Foo() 调用调用函数 Baz() 的函数 Bar(),是否有一个属性或我可以添加到 Bar() 以指示调试器忽略 Bar() 中的代码并直接进入 Baz 中的代码() 而不进入 Qux() 中的代码?
void Foo(){
Bar(); // If start debugging here...
}
void Bar(){ // I want to skip this function completely...
Qux();
Baz();
}
void Baz(){ // And step to here.
Zab();
}