@@ -335,6 +335,77 @@ export class MockProtocol2CodeConverter implements Protocol2CodeConverter {
335335 public asSelectionRanges ( _selectionRanges : any ) : any {
336336 throw new Error ( 'Method not implemented.' ) ;
337337 }
338+ public asSemanticTokensLegend ( _value : proto . SemanticTokensLegend ) : code . SemanticTokensLegend {
339+ throw new Error ( 'Method not implemented.' ) ;
340+ }
341+ public asSemanticTokens ( value : proto . SemanticTokens ) : code . SemanticTokens ;
342+ public asSemanticTokens ( value : undefined | null ) : undefined ;
343+ public asSemanticTokens ( value : proto . SemanticTokens | undefined | null ) : code . SemanticTokens | undefined ;
344+ public asSemanticTokens ( value : proto . SemanticTokens | undefined | null ) : code . SemanticTokens | undefined ;
345+ public asSemanticTokens ( _value : any ) : code . SemanticTokens | undefined {
346+ throw new Error ( 'Method not implemented.' ) ;
347+ }
348+ public asSemanticTokensEdit ( _value : proto . SemanticTokensEdit ) : code . SemanticTokensEdit {
349+ throw new Error ( 'Method not implemented.' ) ;
350+ }
351+ public asSemanticTokensEdits ( value : proto . SemanticTokensDelta ) : code . SemanticTokensEdits ;
352+ public asSemanticTokensEdits ( value : undefined | null ) : undefined ;
353+ public asSemanticTokensEdits (
354+ value : proto . SemanticTokensDelta | undefined | null
355+ ) : code . SemanticTokensEdits | undefined ;
356+ public asSemanticTokensEdits (
357+ value : proto . SemanticTokensDelta | undefined | null
358+ ) : code . SemanticTokensEdits | undefined ;
359+ public asSemanticTokensEdits ( _value : any ) : code . SemanticTokensEdits | undefined {
360+ throw new Error ( 'Method not implemented.' ) ;
361+ }
362+ public asCallHierarchyItem ( item : null ) : undefined ;
363+ public asCallHierarchyItem ( item : proto . CallHierarchyItem ) : code . CallHierarchyItem ;
364+ public asCallHierarchyItem ( item : proto . CallHierarchyItem | null ) : code . CallHierarchyItem | undefined ;
365+ public asCallHierarchyItem ( item : proto . CallHierarchyItem | null ) : code . CallHierarchyItem | undefined ;
366+ public asCallHierarchyItem ( _item : any ) : code . CallHierarchyItem | undefined {
367+ throw new Error ( 'Method not implemented.' ) ;
368+ }
369+ public asCallHierarchyItems ( items : null ) : undefined ;
370+ public asCallHierarchyItems ( items : proto . CallHierarchyItem [ ] ) : code . CallHierarchyItem [ ] ;
371+ public asCallHierarchyItems ( items : proto . CallHierarchyItem [ ] | null ) : code . CallHierarchyItem [ ] | undefined ;
372+ public asCallHierarchyItems ( items : proto . CallHierarchyItem [ ] | null ) : code . CallHierarchyItem [ ] | undefined ;
373+ public asCallHierarchyItems ( _items : any ) : code . CallHierarchyItem [ ] | undefined {
374+ throw new Error ( 'Method not implemented.' ) ;
375+ }
376+ public asCallHierarchyIncomingCall ( _item : proto . CallHierarchyIncomingCall ) : code . CallHierarchyIncomingCall {
377+ throw new Error ( 'Method not implemented.' ) ;
378+ }
379+ public asCallHierarchyIncomingCalls ( items : null ) : undefined ;
380+ public asCallHierarchyIncomingCalls (
381+ items : ReadonlyArray < proto . CallHierarchyIncomingCall >
382+ ) : code . CallHierarchyIncomingCall [ ] ;
383+ public asCallHierarchyIncomingCalls (
384+ items : ReadonlyArray < proto . CallHierarchyIncomingCall > | null
385+ ) : code . CallHierarchyIncomingCall [ ] | undefined ;
386+ public asCallHierarchyIncomingCalls (
387+ items : ReadonlyArray < proto . CallHierarchyIncomingCall > | null
388+ ) : code . CallHierarchyIncomingCall [ ] | undefined ;
389+ public asCallHierarchyIncomingCalls ( _items : any ) : code . CallHierarchyIncomingCall [ ] | undefined {
390+ throw new Error ( 'Method not implemented.' ) ;
391+ }
392+ public asCallHierarchyOutgoingCall ( _item : proto . CallHierarchyOutgoingCall ) : code . CallHierarchyOutgoingCall {
393+ throw new Error ( 'Method not implemented.' ) ;
394+ }
395+ public asCallHierarchyOutgoingCalls ( items : null ) : undefined ;
396+ public asCallHierarchyOutgoingCalls (
397+ items : ReadonlyArray < proto . CallHierarchyOutgoingCall >
398+ ) : code . CallHierarchyOutgoingCall [ ] ;
399+ public asCallHierarchyOutgoingCalls (
400+ items : ReadonlyArray < proto . CallHierarchyOutgoingCall > | null
401+ ) : code . CallHierarchyOutgoingCall [ ] | undefined ;
402+ public asCallHierarchyOutgoingCalls (
403+ items : ReadonlyArray < proto . CallHierarchyOutgoingCall > | null
404+ ) : code . CallHierarchyOutgoingCall [ ] | undefined ;
405+ public asCallHierarchyOutgoingCalls ( _items : any ) : code . CallHierarchyOutgoingCall [ ] | undefined {
406+ throw new Error ( 'Method not implemented.' ) ;
407+ }
408+
338409 private asCompletionItemKind (
339410 value : proto . CompletionItemKind
340411 ) : [ code . CompletionItemKind , proto . CompletionItemKind | undefined ] {
0 commit comments