Implement a language server protocol - #107
Open
gloskull wants to merge 3 commits into
Open
Conversation
…curity feedback Implement a production-grade Language Server Protocol (LSP) Daemon in @chainproof/core for real-time Solidity security analysis and feedback. Key additions: - DocumentStore overlay with in-memory buffer edits & AST caching - AnalysisService for debounced, cancellable incremental security scans - Multi-transport support (stdio, authenticated local IPC socket, TCP) - QuickFix remediations, inline suppression, SWC links, & evidence navigation - Custom JSON-RPC endpoints (threatModel, scanReport, clearCache, status) - Language intelligence providers (Hover, Symbols, Call Hierarchy, References) - CLI integration via `chainproof lsp` - VS Code extension integration using vscode-languageclient - Comprehensive unit/integration tests and Solidity fixtures Co-authored-by: gloskull <189399494+gloskull@users.noreply.github.com>
…-14621368836180962183 feat: Implement Language Server Protocol Daemon for Real-Time Solidity Security Feedback (StellarChainproof#99)
Contributor
|
@gloskull Fix conflicts |
Author
|
Hello @Nanle-code , all conflicts FIXED. |
Author
|
Please review and merge and give and high review. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implemented a production-grade Language Server Protocol Daemon for real-time Solidity security feedback (#99). Included core LSP server/services in @chainproof/core, CLI command chainproof lsp, VS Code extension integration, unit and integration test suites, fixtures, and documentation.
Closes #99