Skip to content

Commit 90090af

Browse files
committed
remove inheritanceTreeSupport
1 parent 8cab387 commit 90090af

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

_specifications/specification-3-17.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2431,7 +2431,7 @@ interface ServerCapabilities {
24312431
*
24322432
* @since 3.17.0
24332433
*/
2434-
typeHierarchyProvider?: TypeHierarchyOptions
2434+
typeHierarchyProvider?: boolean | TypeHierarchyOptions
24352435
| TypeHierarchyRegistrationOptions;
24362436

24372437
/**
@@ -8217,14 +8217,10 @@ interface TypeHierarchyClientCapabilities {
82178217
_Server Capability_:
82188218

82198219
* property name (optional): `typeHierarchyProvider`
8220-
* property type: `TypeHierarchyOptions | TypeHierarchyRegistrationOptions` where `TypeHierarchyOptions` is defined as follows:
8220+
* property type: `boolean | TypeHierarchyOptions | TypeHierarchyRegistrationOptions` where `TypeHierarchyOptions` is defined as follows:
82218221

82228222
```typescript
82238223
export interface TypeHierarchyOptions extends WorkDoneProgressOptions {
8224-
/**
8225-
* The server supports for providing an inheritance tree.
8226-
*/
8227-
inheritanceTreeSupport?: boolean;
82288224
}
82298225
```
82308226

@@ -8318,10 +8314,6 @@ _Request_:
83188314
```typescript
83198315
export interface TypeHierarchySupertypesParams extends
83208316
WorkDoneProgressParams, PartialResultParams {
8321-
/**
8322-
* If this is set to `true`, The request only asks for super class.
8323-
*/
8324-
classOnly?: boolean;
83258317
item: TypeHierarchyItem;
83268318
}
83278319
```

0 commit comments

Comments
 (0)