Skip to content

Commit

Permalink
remove inheritanceTreeSupport
Browse files Browse the repository at this point in the history
  • Loading branch information
CsCherrYY committed Jun 18, 2021
1 parent 8cab387 commit 90090af
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions _specifications/specification-3-17.md
Original file line number Diff line number Diff line change
Expand Up @@ -2431,7 +2431,7 @@ interface ServerCapabilities {
*
* @since 3.17.0
*/
typeHierarchyProvider?: TypeHierarchyOptions
typeHierarchyProvider?: boolean | TypeHierarchyOptions
| TypeHierarchyRegistrationOptions;

/**
Expand Down Expand Up @@ -8217,14 +8217,10 @@ interface TypeHierarchyClientCapabilities {
_Server Capability_:

* property name (optional): `typeHierarchyProvider`
* property type: `TypeHierarchyOptions | TypeHierarchyRegistrationOptions` where `TypeHierarchyOptions` is defined as follows:
* property type: `boolean | TypeHierarchyOptions | TypeHierarchyRegistrationOptions` where `TypeHierarchyOptions` is defined as follows:

```typescript
export interface TypeHierarchyOptions extends WorkDoneProgressOptions {
/**
* The server supports for providing an inheritance tree.
*/
inheritanceTreeSupport?: boolean;
}
```

Expand Down Expand Up @@ -8318,10 +8314,6 @@ _Request_:
```typescript
export interface TypeHierarchySupertypesParams extends
WorkDoneProgressParams, PartialResultParams {
/**
* If this is set to `true`, The request only asks for super class.
*/
classOnly?: boolean;
item: TypeHierarchyItem;
}
```
Expand Down

0 comments on commit 90090af

Please sign in to comment.