提交 ada11bfc 编写于 作者: J Johannes Rieken

strict null trouble

上级 3acc0026
......@@ -8,8 +8,8 @@ import { onUnexpectedError } from 'vs/base/common/errors';
export class LazyPromise implements Thenable<any> {
private _actual: Promise<any> | null;
private _actualOk: (value?: any) => any | null;
private _actualErr: (err?: any) => any | null;
private _actualOk: ((value?: any) => any) | null;
private _actualErr: ((err?: any) => any) | null;
private _hasValue: boolean;
private _value: any;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册