Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463 (#7206)

* Merge from vscode 64980ea1f3f532c82bb6c28d27bba9ef2c5b4463

* fix config changes

* fix strictnull checks
This commit is contained in:
Anthony Dresser
2019-09-15 22:38:26 -07:00
committed by GitHub
parent fa6c52699e
commit ea0f9e6ce9
1226 changed files with 21541 additions and 17633 deletions

View File

@@ -20,7 +20,7 @@ export const SERVICE_ID = 'queryManagementService';
export const IQueryManagementService = createDecorator<IQueryManagementService>(SERVICE_ID);
export interface IQueryManagementService {
_serviceBrand: any;
_serviceBrand: undefined;
onHandlerAdded: Event<string>;
@@ -91,7 +91,7 @@ export interface IQueryRequestHandler {
}
export class QueryManagementService implements IQueryManagementService {
public _serviceBrand: any;
public _serviceBrand: undefined;
private _requestHandlers = new Map<string, IQueryRequestHandler>();
private _onHandlerAddedEmitter = new Emitter<string>();

View File

@@ -47,7 +47,7 @@ export interface IQueryEvent {
* Interface for the logic of handling running queries and grid interactions for all URIs.
*/
export interface IQueryModelService {
_serviceBrand: any;
_serviceBrand: undefined;
getQueryRunner(uri: string): QueryRunner;

View File

@@ -53,7 +53,7 @@ export class QueryInfo {
* Handles running queries and grid interactions for all URIs. Interacts with each URI's results grid via a DataService instance
*/
export class QueryModelService implements IQueryModelService {
_serviceBrand: any;
_serviceBrand: undefined;
// MEMBER VARIABLES ////////////////////////////////////////////////////
private _queryInfoMap: Map<string, QueryInfo>;