Skip to content
This repository was archived by the owner on Oct 16, 2020. It is now read-only.

Empty handler for initialized notification #384

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/typescript-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1324,6 +1324,10 @@ export class TypeScriptService {
.startWith({ op: 'add', path: '', value: { changes: {} } as WorkspaceEdit } as Operation)
}

public async initialized(): Promise<void> {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please copy over the description

// nop
}

/**
* The document open notification is sent from the client to the server to signal newly opened
* text documents. The document's truth is now managed by the client and the server must not try
Expand Down