Resolving onClickCommand and clean up

Drop the viewlet part in treeExplorerViewletService
This commit is contained in:
Pine Wu
2016-10-11 15:24:34 -07:00
parent 09703d267e
commit c7f2d3d1f1
10 changed files with 53 additions and 22 deletions

View File

@@ -267,6 +267,7 @@ export abstract class ExtHostEditorsShape {
export abstract class ExtHostTreeExplorersShape {
$provideRootNode(providerId: string): TPromise<InternalTreeExplorerNode> { throw ni(); };
$resolveChildren(providerId: string, node: InternalTreeExplorerNode): TPromise<InternalTreeExplorerNode[]> { throw ni(); }
$resolveCommand(providerId: string, node: InternalTreeExplorerNode): TPromise<void> { throw ni(); }
}
export abstract class ExtHostExtensionServiceShape {