Skip to content

Latest commit

 

History

History
140 lines (104 loc) · 5.86 KB

File metadata and controls

140 lines (104 loc) · 5.86 KB

Feature Support Matrix

VB.NET Language Support - LSP Features and Roadmap

Version: 2.6
Last Updated: 2026-02-05

1. Overview

This document provides a concise view of LSP features supported by VB.NET Language Support, their implementation status, and roadmap.

Current Phase: Phase 3 (Advanced navigation complete; polish in progress)
Test Coverage: 156 language server tests + 7 extension manifest tests passing (latest recorded run: 2026-01-23)

2. Feature Status Legend

Status Meaning
Implemented Feature is fully implemented and tested
In Progress Feature is currently being developed
Planned Feature is planned for an upcoming phase
Not Planned Feature is not currently on the roadmap
Partial Feature is partially implemented

3. LSP Features

Text Synchronization

Feature Status Phase Notes
textDocument/didOpen Implemented Phase 1 Open document notification
textDocument/didChange (incremental) Implemented Phase 1 Incremental sync for performance
textDocument/didClose Implemented Phase 1 Close document notification
textDocument/didSave Implemented Phase 1 Save notification
textDocument/willSave Not Planned N/A Not required
textDocument/willSaveWaitUntil Not Planned N/A Not required

Diagnostics

Feature Status Phase Notes
textDocument/publishDiagnostics Implemented Phase 1 Push model with debouncing
Syntax errors Implemented Phase 1 Via Roslyn parser
Semantic errors Implemented Phase 1 Via Roslyn semantic analysis
Analyzer diagnostics Implemented Phase 1 Roslyn analyzer support
textDocument/diagnostic (pull model) Implemented Phase 3 Pull diagnostics for a document
workspace/diagnostic (pull model) Implemented Phase 3 Pull diagnostics for workspace

Debouncing: 300ms default (configurable via vbnet.debounceMs)

Completion

Feature Status Phase Notes
textDocument/completion Implemented Phase 1 Keywords, symbols, members, locals
completionItem/resolve Implemented Phase 1 Lazy load documentation
Commit characters Implemented Phase 1 ., (, <, etc.
Snippets Not Planned N/A Use VS Code built-in snippets

Hover

Feature Status Phase Notes
textDocument/hover Implemented Phase 1 Symbol signature and documentation
Quick info Implemented Phase 1 Type information
XML documentation Implemented Phase 1 From <summary>, <param>, etc.

Signature Help

Feature Status Phase Notes
textDocument/signatureHelp Implemented Phase 2 Parameter hints
Multiple overloads Implemented Phase 2 All method overloads
Active parameter highlighting Implemented Phase 2 Current parameter

Code Actions

Feature Status Phase Notes
textDocument/codeAction Implemented Phase 2 Source actions (Option Strict/Explicit/Infer)
codeAction/resolve Implemented Phase 2 Lazy compute edit
Quick fixes (diagnostics) Planned Phase 2 Fix errors/warnings

Formatting

Feature Status Phase Notes
textDocument/formatting Implemented Phase 2 Roslyn formatter
textDocument/rangeFormatting Implemented Phase 2 Roslyn formatter

Symbols and Navigation

Feature Status Phase Notes
textDocument/documentSymbol Implemented Phase 1 Document outline
workspace/symbol Implemented Phase 1 Workspace symbol search
textDocument/definition Implemented Phase 1 Go to definition
textDocument/typeDefinition Implemented Phase 3 Go to type definition
textDocument/implementation Implemented Phase 3 Go to implementation
textDocument/references Implemented Phase 1 Find all references
textDocument/rename Implemented Phase 1 Rename with prepare
textDocument/documentHighlight Implemented Phase 3 Highlight symbol usage in document
textDocument/selectionRange Implemented Phase 3 Selection range hierarchy
textDocument/documentLink Implemented Phase 3 Detect HTTP/HTTPS links
textDocument/prepareCallHierarchy Implemented Phase 3 Prepare call hierarchy
callHierarchy/incomingCalls Implemented Phase 3 Incoming calls
callHierarchy/outgoingCalls Implemented Phase 3 Outgoing calls
textDocument/prepareTypeHierarchy Implemented Phase 3 Prepare type hierarchy
typeHierarchy/supertypes Implemented Phase 3 Supertypes
typeHierarchy/subtypes Implemented Phase 3 Subtypes

Semantic Tokens

Feature Status Phase Notes
textDocument/semanticTokens/full Implemented Phase 2 Full document tokens
textDocument/semanticTokens/range Implemented Phase 2 Range-based tokens

Folding

Feature Status Phase Notes
textDocument/foldingRange Implemented Phase 2 VB blocks and #Region

4. Debugging Features

Feature Status Notes
netcoredbg integration Implemented Bundled netcoredbg (override via settings)

5. VS Code UX Features

Feature Status Notes
Test Explorer integration Implemented Dotnet test runs for solution/project items (run profile only)

6. Roadmap (Next)

Phase 3 focuses on performance tuning and release polish. Inlay hints and code lens are deferred pending stable Roslyn public APIs.