提交 c4e16ffc 编写于 作者: I isidor

debug: null guard

上级 2afba78e
......@@ -243,6 +243,10 @@ export class ConfigurationManager implements debug.IConfigurationManager {
* Resolve all interactive variables in configuration #6569
*/
public resolveInteractiveVariables(): TPromise<debug.IConfig> {
if (!this.configuration) {
return TPromise.as(null);
}
const factory = Object.keys(this.configuration).map(key => {
return () => {
if (typeof this.configuration[key] === 'string') {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册