提交 906729f1 编写于 作者: M Matt Bierner

Fixing more errors from TS 3.9 nightly update

上级 03c2a2b2
......@@ -86,7 +86,7 @@ function readManifest(extensionPath: string): Promise<{ manifest: IExtensionMani
.then(raw => JSON.parse(raw))
];
return Promise.all<any>(promises).then(([{ manifest, metadata }, translations]) => {
return Promise.all(promises).then(([{ manifest, metadata }, translations]) => {
return {
manifest: localizeManifest(manifest, translations),
metadata
......
......@@ -339,7 +339,7 @@ export class HistoryService extends Disposable implements IHistoryService {
const navigateToStackEntry = this.navigationStack[this.navigationStackIndex];
this.doNavigate(navigateToStackEntry).finally(() => this.navigatingInStack = false);
this.doNavigate(navigateToStackEntry).finally(() => { this.navigatingInStack = false; });
}
private doNavigate(location: IStackEntry): Promise<IEditorPane | undefined> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册