提交 61dcbfc2 编写于 作者: I isidor

debug: if noDebug is not passed take behavrior of parent session

#99743
上级 d6ee5437
......@@ -373,7 +373,11 @@ export class DebugService implements IDebugService {
config = Object.create(null);
}
if (options && options.noDebug) {
options.noDebug = true;
config!.noDebug = true;
} else if (options && typeof options.noDebug === 'undefined' && options.parentSession && options.parentSession.configuration.noDebug) {
config!.noDebug = true;
} else {
delete config!.noDebug;
}
const unresolvedConfig = deepClone(config);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册