gitextract_erdqocs0/ ├── .gitattributes ├── .gitignore ├── .vscode/ │ ├── settings.json │ ├── spellright.dict │ └── tasks.json ├── 404.html ├── Gemfile ├── License-code.txt ├── License.txt ├── SECURITY.md ├── ThirdPartyNotices.txt ├── _config.yml ├── _data/ │ ├── base-0-9-toc.yml │ ├── linkableTypes.yml │ ├── lsif-0-4-0-toc.yml │ ├── lsif-0-5-0-toc.yml │ ├── lsif-0-6-0-toc.yml │ ├── overviews.yml │ ├── specification-3-14-toc.yml │ ├── specification-3-15-toc.yml │ ├── specification-3-16-toc.yml │ ├── specification-3-17-toc.yml │ ├── specification-3-18-toc.yml │ └── specifications.yml ├── _implementors/ │ ├── sdks.md │ ├── servers.md │ ├── tools.md │ └── utilities.md ├── _includes/ │ ├── cookie_notice.html │ ├── footer.html │ ├── head.html │ ├── js_files.html │ ├── messages/ │ │ ├── 3.17/ │ │ │ ├── exit.md │ │ │ ├── initialized.md │ │ │ ├── logMessage.md │ │ │ ├── logTrace.md │ │ │ ├── registerCapability.md │ │ │ ├── setTrace.md │ │ │ ├── showMessage.md │ │ │ ├── showMessageRequest.md │ │ │ ├── shutdown.md │ │ │ ├── telemetryEvent.md │ │ │ └── unregisterCapability.md │ │ └── 3.18/ │ │ ├── exit.md │ │ ├── initialized.md │ │ ├── logMessage.md │ │ ├── logTrace.md │ │ ├── registerCapability.md │ │ ├── setTrace.md │ │ ├── showMessage.md │ │ ├── showMessageRequest.md │ │ ├── shutdown.md │ │ ├── telemetryEvent.md │ │ └── unregisterCapability.md │ ├── topnav.html │ └── types/ │ ├── enumerations.md │ ├── traceValue.md │ └── uri.md ├── _layouts/ │ ├── default.html │ ├── implementors.html │ ├── overview.html │ ├── redirect.html │ ├── singlePage.html │ └── specifications.html ├── _overviews/ │ ├── lsif/ │ │ └── overview.md │ └── lsp/ │ └── overview.md ├── _specifications/ │ ├── base/ │ │ └── 0.9/ │ │ └── specification.md │ ├── lsif/ │ │ ├── 0.4.0/ │ │ │ ├── implementation.md │ │ │ └── specification.md │ │ ├── 0.5.0/ │ │ │ ├── implementation.md │ │ │ └── specification.md │ │ └── 0.6.0/ │ │ ├── implementation.md │ │ └── specification.md │ ├── lsp/ │ │ ├── 3.17/ │ │ │ ├── general/ │ │ │ │ └── initialize.md │ │ │ ├── language/ │ │ │ │ ├── callHierarchy.md │ │ │ │ ├── codeAction.md │ │ │ │ ├── codeLens.md │ │ │ │ ├── colorPresentation.md │ │ │ │ ├── completion.md │ │ │ │ ├── declaration.md │ │ │ │ ├── definition.md │ │ │ │ ├── documentColor.md │ │ │ │ ├── documentHighlight.md │ │ │ │ ├── documentLink.md │ │ │ │ ├── documentSymbol.md │ │ │ │ ├── foldingRange.md │ │ │ │ ├── formatting.md │ │ │ │ ├── hover.md │ │ │ │ ├── implementation.md │ │ │ │ ├── inlayHint.md │ │ │ │ ├── inlineValue.md │ │ │ │ ├── linkedEditingRange.md │ │ │ │ ├── moniker.md │ │ │ │ ├── onTypeFormatting.md │ │ │ │ ├── publishDiagnostics.md │ │ │ │ ├── pullDiagnostics.md │ │ │ │ ├── rangeFormatting.md │ │ │ │ ├── references.md │ │ │ │ ├── rename.md │ │ │ │ ├── selectionRange.md │ │ │ │ ├── semanticTokens.md │ │ │ │ ├── signatureHelp.md │ │ │ │ ├── typeDefinition.md │ │ │ │ └── typeHierarchy.md │ │ │ ├── metaModel/ │ │ │ │ ├── metaModel.json │ │ │ │ ├── metaModel.schema.json │ │ │ │ └── metaModel.ts │ │ │ ├── notebookDocument/ │ │ │ │ └── notebook.md │ │ │ ├── specification.md │ │ │ ├── textDocument/ │ │ │ │ ├── didChange.md │ │ │ │ ├── didClose.md │ │ │ │ ├── didOpen.md │ │ │ │ ├── didRename.md │ │ │ │ ├── didSave.md │ │ │ │ ├── willSave.md │ │ │ │ └── willSaveWaitUntil.md │ │ │ ├── types/ │ │ │ │ ├── command.md │ │ │ │ ├── diagnostic.md │ │ │ │ ├── documentFilter.md │ │ │ │ ├── location.md │ │ │ │ ├── locationLink.md │ │ │ │ ├── markupContent.md │ │ │ │ ├── partialResultParams.md │ │ │ │ ├── partialResults.md │ │ │ │ ├── position.md │ │ │ │ ├── range.md │ │ │ │ ├── regexp.md │ │ │ │ ├── resourceChanges.md │ │ │ │ ├── textDocumentEdit.md │ │ │ │ ├── textDocumentIdentifier.md │ │ │ │ ├── textDocumentItem.md │ │ │ │ ├── textDocumentPositionParams.md │ │ │ │ ├── textDocuments.md │ │ │ │ ├── textEdit.md │ │ │ │ ├── textEditArray.md │ │ │ │ ├── versionedTextDocumentIdentifier.md │ │ │ │ ├── workDoneProgress.md │ │ │ │ └── workspaceEdit.md │ │ │ ├── window/ │ │ │ │ ├── showDocument.md │ │ │ │ ├── workDoneProgressCancel.md │ │ │ │ └── workDoneProgressCreate.md │ │ │ └── workspace/ │ │ │ ├── applyEdit.md │ │ │ ├── configuration.md │ │ │ ├── didChangeConfiguration.md │ │ │ ├── didChangeWatchedFiles.md │ │ │ ├── didChangeWorkspaceFolders.md │ │ │ ├── didCreateFiles.md │ │ │ ├── didDeleteFiles.md │ │ │ ├── didRenameFiles.md │ │ │ ├── executeCommand.md │ │ │ ├── symbol.md │ │ │ ├── willCreateFiles.md │ │ │ ├── willDeleteFiles.md │ │ │ ├── willRenameFiles.md │ │ │ └── workspaceFolders.md │ │ └── 3.18/ │ │ ├── general/ │ │ │ └── initialize.md │ │ ├── language/ │ │ │ ├── callHierarchy.md │ │ │ ├── codeAction.md │ │ │ ├── codeLens.md │ │ │ ├── colorPresentation.md │ │ │ ├── completion.md │ │ │ ├── declaration.md │ │ │ ├── definition.md │ │ │ ├── documentColor.md │ │ │ ├── documentHighlight.md │ │ │ ├── documentLink.md │ │ │ ├── documentSymbol.md │ │ │ ├── foldingRange.md │ │ │ ├── formatting.md │ │ │ ├── hover.md │ │ │ ├── implementation.md │ │ │ ├── inlayHint.md │ │ │ ├── inlineCompletion.md │ │ │ ├── inlineValue.md │ │ │ ├── linkedEditingRange.md │ │ │ ├── moniker.md │ │ │ ├── onTypeFormatting.md │ │ │ ├── publishDiagnostics.md │ │ │ ├── pullDiagnostics.md │ │ │ ├── rangeFormatting.md │ │ │ ├── references.md │ │ │ ├── rename.md │ │ │ ├── selectionRange.md │ │ │ ├── semanticTokens.md │ │ │ ├── signatureHelp.md │ │ │ ├── typeDefinition.md │ │ │ └── typeHierarchy.md │ │ ├── metaModel/ │ │ │ ├── metaModel.json │ │ │ ├── metaModel.schema.json │ │ │ └── metaModel.ts │ │ ├── notebookDocument/ │ │ │ └── notebook.md │ │ ├── specification.md │ │ ├── textDocument/ │ │ │ ├── didChange.md │ │ │ ├── didClose.md │ │ │ ├── didOpen.md │ │ │ ├── didRename.md │ │ │ ├── didSave.md │ │ │ ├── willSave.md │ │ │ └── willSaveWaitUntil.md │ │ ├── types/ │ │ │ ├── command.md │ │ │ ├── diagnostic.md │ │ │ ├── documentFilter.md │ │ │ ├── location.md │ │ │ ├── locationLink.md │ │ │ ├── markupContent.md │ │ │ ├── partialResultParams.md │ │ │ ├── partialResults.md │ │ │ ├── patterns.md │ │ │ ├── position.md │ │ │ ├── range.md │ │ │ ├── regexp.md │ │ │ ├── resourceChanges.md │ │ │ ├── stringValue.md │ │ │ ├── textDocumentEdit.md │ │ │ ├── textDocumentIdentifier.md │ │ │ ├── textDocumentItem.md │ │ │ ├── textDocumentPositionParams.md │ │ │ ├── textDocuments.md │ │ │ ├── textEdit.md │ │ │ ├── textEditArray.md │ │ │ ├── versionedTextDocumentIdentifier.md │ │ │ ├── workDoneProgress.md │ │ │ └── workspaceEdit.md │ │ ├── window/ │ │ │ ├── showDocument.md │ │ │ ├── workDoneProgressCancel.md │ │ │ └── workDoneProgressCreate.md │ │ └── workspace/ │ │ ├── applyEdit.md │ │ ├── configuration.md │ │ ├── didChangeConfiguration.md │ │ ├── didChangeWatchedFiles.md │ │ ├── didChangeWorkspaceFolders.md │ │ ├── didCreateFiles.md │ │ ├── didDeleteFiles.md │ │ ├── didRenameFiles.md │ │ ├── executeCommand.md │ │ ├── symbol.md │ │ ├── textDocumentContent.md │ │ ├── willCreateFiles.md │ │ ├── willDeleteFiles.md │ │ ├── willRenameFiles.md │ │ └── workspaceFolders.md │ ├── specification-3-14.md │ ├── specification-3-15.md │ └── specification-3-16.md ├── css/ │ └── main.scss ├── index.html ├── js/ │ └── page.js └── resources/ └── notes.md