Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix for null resolveProvider in codeAction
The resolveProvider field doesn't need to be present even if the codeAction param is. From the specification: ``` export interface CodeActionOptions extends WorkDoneProgressOptions { /** * CodeActionKinds that this server may return. * * The list of kinds may be generic, such as `CodeActionKind.Refactor`, * or the server may list out every specific kind they provide. */ codeActionKinds?: CodeActionKind[]; /** * The server provides support to resolve additional * information for a code action. * * @SInCE 3.16.0 */ resolveProvider?: boolean; } ```
- Loading branch information