@@ -67,7 +67,7 @@ public void Should_Not_Throw_Given_Another_Descriptor()
67
67
typeof ( CodeLensParams ) ,
68
68
null ,
69
69
null ,
70
- null ,
70
+ false ,
71
71
null ,
72
72
( ) => { } ) ;
73
73
var handlerMatcher = new ResolveCommandPipeline < CodeLensParams , CodeLensContainer > (
@@ -101,7 +101,7 @@ public void Should_Return_CodeLensResolve_Descriptor()
101
101
typeof ( CodeLens ) ,
102
102
null ,
103
103
null ,
104
- null ,
104
+ false ,
105
105
null ,
106
106
( ) => { } ) ,
107
107
new HandlerDescriptor ( DocumentNames . CodeLensResolve ,
@@ -111,7 +111,7 @@ public void Should_Return_CodeLensResolve_Descriptor()
111
111
typeof ( CodeLens ) ,
112
112
null ,
113
113
null ,
114
- null ,
114
+ false ,
115
115
null ,
116
116
( ) => { } ) ,
117
117
} )
@@ -140,7 +140,7 @@ public void Should_Handle_Null_Data()
140
140
typeof ( CompletionItem ) ,
141
141
null ,
142
142
null ,
143
- null ,
143
+ false ,
144
144
null ,
145
145
( ) => { } ) ,
146
146
} )
@@ -171,7 +171,7 @@ public void Should_Handle_Simple_Json_Data()
171
171
typeof ( CompletionItem ) ,
172
172
null ,
173
173
null ,
174
- null ,
174
+ false ,
175
175
null ,
176
176
( ) => { } ) ,
177
177
} )
@@ -204,7 +204,7 @@ public void Should_Return_CompletionResolve_Descriptor()
204
204
typeof ( CompletionItem ) ,
205
205
null ,
206
206
null ,
207
- null ,
207
+ false ,
208
208
null ,
209
209
( ) => { } ) ,
210
210
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -214,7 +214,7 @@ public void Should_Return_CompletionResolve_Descriptor()
214
214
typeof ( CompletionItem ) ,
215
215
null ,
216
216
null ,
217
- null ,
217
+ false ,
218
218
null ,
219
219
( ) => { } ) ,
220
220
} )
@@ -254,7 +254,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers()
254
254
typeof ( CompletionItem ) ,
255
255
null ,
256
256
null ,
257
- null ,
257
+ false ,
258
258
null ,
259
259
( ) => { } ) ,
260
260
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -264,7 +264,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers()
264
264
typeof ( CompletionItem ) ,
265
265
null ,
266
266
null ,
267
- null ,
267
+ false ,
268
268
null ,
269
269
( ) => { } ) ,
270
270
} )
@@ -300,7 +300,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers2()
300
300
typeof ( CompletionItem ) ,
301
301
null ,
302
302
null ,
303
- null ,
303
+ false ,
304
304
null ,
305
305
( ) => { } ) ,
306
306
new HandlerDescriptor ( DocumentNames . CompletionResolve ,
@@ -310,7 +310,7 @@ public void Should_Deal_WithHandlers_That_Not_Also_Resolvers2()
310
310
typeof ( CompletionItem ) ,
311
311
null ,
312
312
null ,
313
- null ,
313
+ false ,
314
314
null ,
315
315
( ) => { } ) ,
316
316
} )
@@ -338,7 +338,7 @@ public async Task Should_Update_CompletionItems_With_HandlerType()
338
338
typeof ( CompletionParams ) ,
339
339
null ,
340
340
null ,
341
- null ,
341
+ false ,
342
342
null ,
343
343
( ) => { } ) ;
344
344
var handlerMatcher = new ResolveCommandPipeline < CompletionParams , CompletionList > (
@@ -381,7 +381,7 @@ public async Task Should_Update_CodeLensContainer_With_HandlerType()
381
381
typeof ( CodeLensParams ) ,
382
382
null ,
383
383
null ,
384
- null ,
384
+ false ,
385
385
null ,
386
386
( ) => { } ) ;
387
387
var handlerMatcher = new ResolveCommandPipeline < CodeLensParams , CodeLensContainer > (
@@ -424,7 +424,7 @@ public async Task Should_Update_CodeLens_Removing_HandlerType()
424
424
typeof ( CodeLens ) ,
425
425
null ,
426
426
null ,
427
- null ,
427
+ false ,
428
428
null ,
429
429
( ) => { } ) ;
430
430
var handlerMatcher = new ResolveCommandPipeline < CodeLens , CodeLens > (
0 commit comments